pub struct VMod(/* private fields */);
Implementations§
Source§impl VMod
impl VMod
pub const M15: Self
pub const M14: Self
pub const M13: Self
pub const M12: Self
pub const M11: Self
pub const M10: Self
pub const M9: Self
pub const M8: Self
pub const M7: Self
pub const M6: Self
pub const M5: Self
pub const M4: Self
pub const M3: Self
pub const M2: Self
pub const M1: Self
pub const M0: Self
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<VMod> for u16
impl BitAndAssign<VMod> for u16
Source§fn bitand_assign(&mut self, other: VMod)
fn bitand_assign(&mut self, other: VMod)
Performs the
&=
operation. Read moreSource§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<VMod> for u16
impl BitOrAssign<VMod> for u16
Source§fn bitor_assign(&mut self, other: VMod)
fn bitor_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<'de> Deserialize<'de> for VMod
impl<'de> Deserialize<'de> for VMod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§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