Struct BoolCtrlsLow
pub struct BoolCtrlsLow(/* private fields */);
Implementations§
§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 = _
§impl BoolCtrlsLow
impl BoolCtrlsLow
pub 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.
pub 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.
pub 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§
§impl BitAnd<u8> for BoolCtrlsLow
impl BitAnd<u8> for BoolCtrlsLow
§impl BitAnd for BoolCtrlsLow
impl BitAnd for BoolCtrlsLow
§type Output = BoolCtrlsLow
type Output = BoolCtrlsLow
The resulting type after applying the
&
operator.§fn bitand(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitAnd>::Output
fn bitand(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitAnd>::Output
Performs the
&
operation. Read more§impl BitAndAssign<u8> for BoolCtrlsLow
impl BitAndAssign<u8> for BoolCtrlsLow
§fn bitand_assign(&mut self, other: u8)
fn bitand_assign(&mut self, other: u8)
Performs the
&=
operation. Read more§impl BitAndAssign for BoolCtrlsLow
impl BitAndAssign for BoolCtrlsLow
§fn bitand_assign(&mut self, other: BoolCtrlsLow)
fn bitand_assign(&mut self, other: BoolCtrlsLow)
Performs the
&=
operation. Read more§impl BitOr<u8> for BoolCtrlsLow
impl BitOr<u8> for BoolCtrlsLow
§impl BitOr for BoolCtrlsLow
impl BitOr for BoolCtrlsLow
§type Output = BoolCtrlsLow
type Output = BoolCtrlsLow
The resulting type after applying the
|
operator.§fn bitor(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitOr>::Output
fn bitor(self, other: BoolCtrlsLow) -> <BoolCtrlsLow as BitOr>::Output
Performs the
|
operation. Read more§impl BitOrAssign<u8> for BoolCtrlsLow
impl BitOrAssign<u8> for BoolCtrlsLow
§fn bitor_assign(&mut self, other: u8)
fn bitor_assign(&mut self, other: u8)
Performs the
|=
operation. Read more§impl BitOrAssign for BoolCtrlsLow
impl BitOrAssign for BoolCtrlsLow
§fn bitor_assign(&mut self, other: BoolCtrlsLow)
fn bitor_assign(&mut self, other: BoolCtrlsLow)
Performs the
|=
operation. Read more§impl Clone for BoolCtrlsLow
impl Clone for BoolCtrlsLow
§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 more§impl Debug for BoolCtrlsLow
impl Debug for BoolCtrlsLow
§impl Default for BoolCtrlsLow
impl Default for BoolCtrlsLow
§fn default() -> BoolCtrlsLow
fn default() -> BoolCtrlsLow
Returns the “default value” for a type. Read more
§impl From<u8> for BoolCtrlsLow
impl From<u8> for BoolCtrlsLow
§fn from(value: u8) -> BoolCtrlsLow
fn from(value: u8) -> BoolCtrlsLow
Converts to this type from the input type.
§impl Hash for BoolCtrlsLow
impl Hash for BoolCtrlsLow
§impl Ord for BoolCtrlsLow
impl Ord for BoolCtrlsLow
§impl PartialEq for BoolCtrlsLow
impl PartialEq for BoolCtrlsLow
§impl PartialOrd for BoolCtrlsLow
impl PartialOrd for BoolCtrlsLow
impl 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)