pub struct VMod(/* private fields */);
Implementations§
Source§impl VMod
impl VMod
pub const M15: VMod
pub const M14: VMod
pub const M13: VMod
pub const M12: VMod
pub const M11: VMod
pub const M10: VMod
pub const M9: VMod
pub const M8: VMod
pub const M7: VMod
pub const M6: VMod
pub const M5: VMod
pub const M4: VMod
pub const M3: VMod
pub const M2: VMod
pub const M1: VMod
pub const M0: VMod
Source§impl VMod
impl VMod
Sourcepub fn contains(self, flag: impl Into<u16>) -> bool
pub fn contains(self, flag: impl Into<u16>) -> 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<u16>) -> bool
pub fn intersects(self, flag: impl Into<u16>) -> 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<u16> for VMod
impl BitAndAssign<u16> for VMod
Source§fn bitand_assign(&mut self, other: u16)
fn bitand_assign(&mut self, other: u16)
Performs the
&=
operation. Read moreSource§impl BitAndAssign for VMod
impl BitAndAssign for VMod
Source§fn bitand_assign(&mut self, other: VMod)
fn bitand_assign(&mut self, other: VMod)
Performs the
&=
operation. Read moreSource§impl BitOrAssign<u16> for VMod
impl BitOrAssign<u16> for VMod
Source§fn bitor_assign(&mut self, other: u16)
fn bitor_assign(&mut self, other: u16)
Performs the
|=
operation. Read moreSource§impl BitOrAssign for VMod
impl BitOrAssign for VMod
Source§fn bitor_assign(&mut self, other: VMod)
fn bitor_assign(&mut self, other: VMod)
Performs the
|=
operation. Read moreSource§impl Ord for VMod
impl Ord for VMod
Source§impl PartialOrd for VMod
impl PartialOrd for VMod
impl Copy for VMod
impl Eq for VMod
impl StructuralPartialEq for VMod
Auto Trait Implementations§
impl Freeze for VMod
impl RefUnwindSafe for VMod
impl Send for VMod
impl Sync for VMod
impl Unpin for VMod
impl UnwindSafe for VMod
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