Struct x11rb_protocol::protocol::xproto::ConfigWindow
source · [−]pub struct ConfigWindow(_);
Implementations
sourceimpl ConfigWindow
impl ConfigWindow
pub const X: Self = Self(1 << 0)
pub const Y: Self = Self(1 << 1)
pub const WIDTH: Self = Self(1 << 2)
pub const HEIGHT: Self = Self(1 << 3)
pub const BORDER_WIDTH: Self = Self(1 << 4)
pub const SIBLING: Self = Self(1 << 5)
pub const STACK_MODE: Self = Self(1 << 6)
Trait Implementations
sourceimpl BitOr<ConfigWindow> for ConfigWindow
impl BitOr<ConfigWindow> for ConfigWindow
sourceimpl BitOr<ConfigWindow> for u8
impl BitOr<ConfigWindow> for u8
type Output = ConfigWindow
type Output = ConfigWindow
The resulting type after applying the |
operator.
sourcefn bitor(self, other: ConfigWindow) -> Self::Output
fn bitor(self, other: ConfigWindow) -> Self::Output
Performs the |
operation. Read more
sourceimpl BitOr<u8> for ConfigWindow
impl BitOr<u8> for ConfigWindow
sourceimpl BitOrAssign<ConfigWindow> for u8
impl BitOrAssign<ConfigWindow> for u8
sourcefn bitor_assign(&mut self, other: ConfigWindow)
fn bitor_assign(&mut self, other: ConfigWindow)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<u8> for ConfigWindow
impl BitOrAssign<u8> for ConfigWindow
sourcefn bitor_assign(&mut self, other: u8)
fn bitor_assign(&mut self, other: u8)
Performs the |=
operation. Read more
sourceimpl Clone for ConfigWindow
impl Clone for ConfigWindow
sourcefn clone(&self) -> ConfigWindow
fn clone(&self) -> ConfigWindow
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ConfigWindow
impl Debug for ConfigWindow
sourceimpl Default for ConfigWindow
impl Default for ConfigWindow
sourcefn default() -> ConfigWindow
fn default() -> ConfigWindow
Returns the “default value” for a type. Read more
sourceimpl From<ConfigWindow> for u8
impl From<ConfigWindow> for u8
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigWindow> for Option<u8>
impl From<ConfigWindow> for Option<u8>
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigWindow> for u16
impl From<ConfigWindow> for u16
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigWindow> for Option<u16>
impl From<ConfigWindow> for Option<u16>
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigWindow> for u32
impl From<ConfigWindow> for u32
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigWindow> for Option<u32>
impl From<ConfigWindow> for Option<u32>
sourcefn from(input: ConfigWindow) -> Self
fn from(input: ConfigWindow) -> Self
Converts to this type from the input type.
sourceimpl From<u8> for ConfigWindow
impl From<u8> for ConfigWindow
sourceimpl Hash for ConfigWindow
impl Hash for ConfigWindow
sourceimpl Ord for ConfigWindow
impl Ord for ConfigWindow
sourceimpl PartialEq<ConfigWindow> for ConfigWindow
impl PartialEq<ConfigWindow> for ConfigWindow
sourcefn eq(&self, other: &ConfigWindow) -> bool
fn eq(&self, other: &ConfigWindow) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ConfigWindow) -> bool
fn ne(&self, other: &ConfigWindow) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ConfigWindow> for ConfigWindow
impl PartialOrd<ConfigWindow> for ConfigWindow
sourcefn partial_cmp(&self, other: &ConfigWindow) -> Option<Ordering>
fn partial_cmp(&self, other: &ConfigWindow) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for ConfigWindow
impl Eq for ConfigWindow
impl StructuralEq for ConfigWindow
impl StructuralPartialEq for ConfigWindow
Auto Trait Implementations
impl RefUnwindSafe for ConfigWindow
impl Send for ConfigWindow
impl Sync for ConfigWindow
impl Unpin for ConfigWindow
impl UnwindSafe for ConfigWindow
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more