Struct ModifierMask
pub struct ModifierMask(/* private fields */);
Implementations§
§impl ModifierMask
impl ModifierMask
pub const ANY: ModifierMask = _
§impl ModifierMask
impl ModifierMask
pub fn contains(self, flag: impl Into<u32>) -> bool
pub fn contains(self, flag: impl Into<u32>) -> 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<u32>) -> bool
pub fn intersects(self, flag: impl Into<u32>) -> 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<u32>) -> ModifierMask
pub fn remove(self, flags: impl Into<u32>) -> ModifierMask
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<u32> for ModifierMask
impl BitAnd<u32> for ModifierMask
§impl BitAnd for ModifierMask
impl BitAnd for ModifierMask
§type Output = ModifierMask
type Output = ModifierMask
The resulting type after applying the
&
operator.§fn bitand(self, other: ModifierMask) -> <ModifierMask as BitAnd>::Output
fn bitand(self, other: ModifierMask) -> <ModifierMask as BitAnd>::Output
Performs the
&
operation. Read more§impl BitAndAssign<u32> for ModifierMask
impl BitAndAssign<u32> for ModifierMask
§fn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
Performs the
&=
operation. Read more§impl BitAndAssign for ModifierMask
impl BitAndAssign for ModifierMask
§fn bitand_assign(&mut self, other: ModifierMask)
fn bitand_assign(&mut self, other: ModifierMask)
Performs the
&=
operation. Read more§impl BitOr<u32> for ModifierMask
impl BitOr<u32> for ModifierMask
§impl BitOr for ModifierMask
impl BitOr for ModifierMask
§type Output = ModifierMask
type Output = ModifierMask
The resulting type after applying the
|
operator.§fn bitor(self, other: ModifierMask) -> <ModifierMask as BitOr>::Output
fn bitor(self, other: ModifierMask) -> <ModifierMask as BitOr>::Output
Performs the
|
operation. Read more§impl BitOrAssign<u32> for ModifierMask
impl BitOrAssign<u32> for ModifierMask
§fn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
Performs the
|=
operation. Read more§impl BitOrAssign for ModifierMask
impl BitOrAssign for ModifierMask
§fn bitor_assign(&mut self, other: ModifierMask)
fn bitor_assign(&mut self, other: ModifierMask)
Performs the
|=
operation. Read more§impl Clone for ModifierMask
impl Clone for ModifierMask
§fn clone(&self) -> ModifierMask
fn clone(&self) -> ModifierMask
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 ModifierMask
impl Debug for ModifierMask
§impl Default for ModifierMask
impl Default for ModifierMask
§fn default() -> ModifierMask
fn default() -> ModifierMask
Returns the “default value” for a type. Read more
§impl From<u16> for ModifierMask
impl From<u16> for ModifierMask
§fn from(value: u16) -> ModifierMask
fn from(value: u16) -> ModifierMask
Converts to this type from the input type.
§impl From<u32> for ModifierMask
impl From<u32> for ModifierMask
§fn from(value: u32) -> ModifierMask
fn from(value: u32) -> ModifierMask
Converts to this type from the input type.
§impl From<u8> for ModifierMask
impl From<u8> for ModifierMask
§fn from(value: u8) -> ModifierMask
fn from(value: u8) -> ModifierMask
Converts to this type from the input type.
§impl Hash for ModifierMask
impl Hash for ModifierMask
§impl Ord for ModifierMask
impl Ord for ModifierMask
§impl PartialEq for ModifierMask
impl PartialEq for ModifierMask
§impl PartialOrd for ModifierMask
impl PartialOrd for ModifierMask
impl Copy for ModifierMask
impl Eq for ModifierMask
impl StructuralPartialEq for ModifierMask
Auto Trait Implementations§
impl Freeze for ModifierMask
impl RefUnwindSafe for ModifierMask
impl Send for ModifierMask
impl Sync for ModifierMask
impl Unpin for ModifierMask
impl UnwindSafe for ModifierMask
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
)