Struct x11rb_protocol::protocol::render::ChangePictureAux
source · pub struct ChangePictureAux {Show 13 fields
pub repeat: Option<Repeat>,
pub alphamap: Option<Picture>,
pub alphaxorigin: Option<i32>,
pub alphayorigin: Option<i32>,
pub clipxorigin: Option<i32>,
pub clipyorigin: Option<i32>,
pub clipmask: Option<Pixmap>,
pub graphicsexposure: Option<u32>,
pub subwindowmode: Option<SubwindowMode>,
pub polyedge: Option<PolyEdge>,
pub polymode: Option<PolyMode>,
pub dither: Option<Atom>,
pub componentalpha: Option<u32>,
}
Expand description
Auxiliary and optional information for the change_picture
function
Fields§
§repeat: Option<Repeat>
§alphamap: Option<Picture>
§alphaxorigin: Option<i32>
§alphayorigin: Option<i32>
§clipxorigin: Option<i32>
§clipyorigin: Option<i32>
§clipmask: Option<Pixmap>
§graphicsexposure: Option<u32>
§subwindowmode: Option<SubwindowMode>
§polyedge: Option<PolyEdge>
§polymode: Option<PolyMode>
§dither: Option<Atom>
§componentalpha: Option<u32>
Implementations§
source§impl ChangePictureAux
impl ChangePictureAux
sourcepub fn alphaxorigin<I>(self, value: I) -> Self
pub fn alphaxorigin<I>(self, value: I) -> Self
Set the alphaxorigin
field of this structure.
sourcepub fn alphayorigin<I>(self, value: I) -> Self
pub fn alphayorigin<I>(self, value: I) -> Self
Set the alphayorigin
field of this structure.
sourcepub fn clipxorigin<I>(self, value: I) -> Self
pub fn clipxorigin<I>(self, value: I) -> Self
Set the clipxorigin
field of this structure.
sourcepub fn clipyorigin<I>(self, value: I) -> Self
pub fn clipyorigin<I>(self, value: I) -> Self
Set the clipyorigin
field of this structure.
sourcepub fn graphicsexposure<I>(self, value: I) -> Self
pub fn graphicsexposure<I>(self, value: I) -> Self
Set the graphicsexposure
field of this structure.
sourcepub fn subwindowmode<I>(self, value: I) -> Self
pub fn subwindowmode<I>(self, value: I) -> Self
Set the subwindowmode
field of this structure.
sourcepub fn componentalpha<I>(self, value: I) -> Self
pub fn componentalpha<I>(self, value: I) -> Self
Set the componentalpha
field of this structure.
Trait Implementations§
source§impl Clone for ChangePictureAux
impl Clone for ChangePictureAux
source§fn clone(&self) -> ChangePictureAux
fn clone(&self) -> ChangePictureAux
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ChangePictureAux
impl Debug for ChangePictureAux
source§impl Default for ChangePictureAux
impl Default for ChangePictureAux
source§fn default() -> ChangePictureAux
fn default() -> ChangePictureAux
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChangePictureAux
impl<'de> Deserialize<'de> for ChangePictureAux
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for ChangePictureAux
impl Hash for ChangePictureAux
source§impl Ord for ChangePictureAux
impl Ord for ChangePictureAux
source§fn cmp(&self, other: &ChangePictureAux) -> Ordering
fn cmp(&self, other: &ChangePictureAux) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ChangePictureAux
impl PartialEq for ChangePictureAux
source§fn eq(&self, other: &ChangePictureAux) -> bool
fn eq(&self, other: &ChangePictureAux) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ChangePictureAux
impl PartialOrd for ChangePictureAux
source§fn partial_cmp(&self, other: &ChangePictureAux) -> Option<Ordering>
fn partial_cmp(&self, other: &ChangePictureAux) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for ChangePictureAux
impl Serialize for ChangePictureAux
impl Copy for ChangePictureAux
impl Eq for ChangePictureAux
impl StructuralPartialEq for ChangePictureAux
Auto Trait Implementations§
impl Freeze for ChangePictureAux
impl RefUnwindSafe for ChangePictureAux
impl Send for ChangePictureAux
impl Sync for ChangePictureAux
impl Unpin for ChangePictureAux
impl UnwindSafe for ChangePictureAux
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more