pub struct IMFlag(/* private fields */);Implementations§
Source§impl IMFlag
 
impl IMFlag
pub const NO_EXPLICIT: IMFlag
pub const NO_AUTOMATIC: IMFlag
pub const LED_DRIVES_KB: IMFlag
Source§impl IMFlag
 
impl IMFlag
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.
Trait Implementations§
Source§impl BitAndAssign<u8> for IMFlag
 
impl BitAndAssign<u8> for IMFlag
Source§fn bitand_assign(&mut self, other: u8)
 
fn bitand_assign(&mut self, other: u8)
Performs the 
&= operation. Read moreSource§impl BitAndAssign for IMFlag
 
impl BitAndAssign for IMFlag
Source§fn bitand_assign(&mut self, other: IMFlag)
 
fn bitand_assign(&mut self, other: IMFlag)
Performs the 
&= operation. Read moreSource§impl BitOrAssign<u8> for IMFlag
 
impl BitOrAssign<u8> for IMFlag
Source§fn bitor_assign(&mut self, other: u8)
 
fn bitor_assign(&mut self, other: u8)
Performs the 
|= operation. Read moreSource§impl BitOrAssign for IMFlag
 
impl BitOrAssign for IMFlag
Source§fn bitor_assign(&mut self, other: IMFlag)
 
fn bitor_assign(&mut self, other: IMFlag)
Performs the 
|= operation. Read moreSource§impl Ord for IMFlag
 
impl Ord for IMFlag
Source§impl PartialOrd for IMFlag
 
impl PartialOrd for IMFlag
impl Copy for IMFlag
impl Eq for IMFlag
impl StructuralPartialEq for IMFlag
Auto Trait Implementations§
impl Freeze for IMFlag
impl RefUnwindSafe for IMFlag
impl Send for IMFlag
impl Sync for IMFlag
impl Unpin for IMFlag
impl UnwindSafe for IMFlag
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