Struct x11rb::protocol::xkb::BoolCtrlsLow
source · pub struct BoolCtrlsLow(u8);
Tuple Fields§
§0: u8
Implementations§
source§impl BoolCtrlsLow
impl BoolCtrlsLow
pub const REPEAT_KEYS: BoolCtrlsLow = _
pub const SLOW_KEYS: BoolCtrlsLow = _
pub const BOUNCE_KEYS: BoolCtrlsLow = _
pub const STICKY_KEYS: BoolCtrlsLow = _
pub const MOUSE_KEYS: BoolCtrlsLow = _
pub const MOUSE_KEYS_ACCEL: BoolCtrlsLow = _
pub const ACCESS_X_KEYS: BoolCtrlsLow = _
pub const ACCESS_X_TIMEOUT: BoolCtrlsLow = _
source§impl BoolCtrlsLow
impl BoolCtrlsLow
sourcepub fn contains(self, flag: impl Into<u8>) -> bool
pub fn contains(self, flag: impl Into<u8>) -> bool
Check if this object has all bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
sourcepub fn intersects(self, flag: impl Into<u8>) -> bool
pub fn intersects(self, flag: impl Into<u8>) -> bool
Check if this object has some bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
sourcepub fn remove(self, flags: impl Into<u8>) -> BoolCtrlsLow
pub fn remove(self, flags: impl Into<u8>) -> BoolCtrlsLow
Remove some flags.
All bits that are set in the given flags are removed from the self
instance, if
they are present.
Trait Implementations§
source§impl BitAnd<u8> for BoolCtrlsLow
impl BitAnd<u8> for BoolCtrlsLow
source§impl BitAnd for BoolCtrlsLow
impl BitAnd for BoolCtrlsLow
§type Output = BoolCtrlsLow
type Output = BoolCtrlsLow
The resulting type after applying the
&
operator.source§fn bitand(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitAnd>::Output
fn bitand(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitAnd>::Output
Performs the
&
operation. Read moresource§impl BitAndAssign<u8> for BoolCtrlsLow
impl BitAndAssign<u8> for BoolCtrlsLow
source§fn bitand_assign(&mut self, other: u8)
fn bitand_assign(&mut self, other: u8)
Performs the
&=
operation. Read moresource§impl BitAndAssign for BoolCtrlsLow
impl BitAndAssign for BoolCtrlsLow
source§fn bitand_assign(&mut self, other: BoolCtrlsLow)
fn bitand_assign(&mut self, other: BoolCtrlsLow)
Performs the
&=
operation. Read moresource§impl BitOr<u8> for BoolCtrlsLow
impl BitOr<u8> for BoolCtrlsLow
source§impl BitOr for BoolCtrlsLow
impl BitOr for BoolCtrlsLow
§type Output = BoolCtrlsLow
type Output = BoolCtrlsLow
The resulting type after applying the
|
operator.source§fn bitor(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitOr>::Output
fn bitor(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitOr>::Output
Performs the
|
operation. Read moresource§impl BitOrAssign<u8> for BoolCtrlsLow
impl BitOrAssign<u8> for BoolCtrlsLow
source§fn bitor_assign(&mut self, other: u8)
fn bitor_assign(&mut self, other: u8)
Performs the
|=
operation. Read moresource§impl BitOrAssign for BoolCtrlsLow
impl BitOrAssign for BoolCtrlsLow
source§fn bitor_assign(&mut self, other: BoolCtrlsLow)
fn bitor_assign(&mut self, other: BoolCtrlsLow)
Performs the
|=
operation. Read moresource§impl Clone for BoolCtrlsLow
impl Clone for BoolCtrlsLow
source§fn clone(&self) -> BoolCtrlsLow
fn clone(&self) -> BoolCtrlsLow
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 BoolCtrlsLow
impl Debug for BoolCtrlsLow
source§impl Default for BoolCtrlsLow
impl Default for BoolCtrlsLow
source§fn default() -> BoolCtrlsLow
fn default() -> BoolCtrlsLow
Returns the “default value” for a type. Read more
source§impl From<u8> for BoolCtrlsLow
impl From<u8> for BoolCtrlsLow
source§fn from(value: u8) -> BoolCtrlsLow
fn from(value: u8) -> BoolCtrlsLow
Converts to this type from the input type.
source§impl Hash for BoolCtrlsLow
impl Hash for BoolCtrlsLow
source§impl Ord for BoolCtrlsLow
impl Ord for BoolCtrlsLow
source§fn cmp(&self, other: &BoolCtrlsLow) -> Ordering
fn cmp(&self, other: &BoolCtrlsLow) -> 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 BoolCtrlsLow
impl PartialEq for BoolCtrlsLow
source§fn eq(&self, other: &BoolCtrlsLow) -> bool
fn eq(&self, other: &BoolCtrlsLow) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for BoolCtrlsLow
impl PartialOrd for BoolCtrlsLow
source§fn partial_cmp(&self, other: &BoolCtrlsLow) -> Option<Ordering>
fn partial_cmp(&self, other: &BoolCtrlsLow) -> 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 moreimpl Copy for BoolCtrlsLow
impl Eq for BoolCtrlsLow
impl StructuralPartialEq for BoolCtrlsLow
Auto Trait Implementations§
impl Freeze for BoolCtrlsLow
impl RefUnwindSafe for BoolCtrlsLow
impl Send for BoolCtrlsLow
impl Sync for BoolCtrlsLow
impl Unpin for BoolCtrlsLow
impl UnwindSafe for BoolCtrlsLow
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