#[repr(transparent)]pub struct MQRO(pub i32);Expand description
Report Options Masks
Tuple Fields§
§0: i32Implementations§
Source§impl MQRO
impl MQRO
pub fn bitflags_list( &self, ) -> (impl Iterator<Item = (i32, &'static str)> + use<>, i32)
pub const fn contains(self, other: MQRO) -> bool
pub const fn union(self, other: MQRO) -> MQRO
pub const fn intersection(self, other: MQRO) -> MQRO
pub const fn intersects(self, other: MQRO) -> bool
pub const fn complement(self) -> MQRO
pub fn insert(&mut self, other: MQRO)
pub fn remove(&mut self, other: MQRO)
pub fn toggle(&mut self, other: MQRO)
Trait Implementations§
Source§impl BitOrAssign for MQRO
impl BitOrAssign for MQRO
Source§fn bitor_assign(&mut self, rhs: MQRO)
fn bitor_assign(&mut self, rhs: MQRO)
Performs the
|= operation. Read moreSource§impl BitXorAssign for MQRO
impl BitXorAssign for MQRO
Source§fn bitxor_assign(&mut self, rhs: MQRO)
fn bitxor_assign(&mut self, rhs: MQRO)
Performs the
^= operation. Read moreSource§impl Extend<MQRO> for MQRO
impl Extend<MQRO> for MQRO
Source§fn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = MQRO>,
fn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = MQRO>,
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
Source§impl FromIterator<MQRO> for MQRO
impl FromIterator<MQRO> for MQRO
Source§impl HasConstLookup for MQRO
impl HasConstLookup for MQRO
Source§fn const_lookup<'a>() -> &'a (impl ConstLookup + 'static)
fn const_lookup<'a>() -> &'a (impl ConstLookup + 'static)
Retrieve the static constant lookup table
Source§impl SubAssign for MQRO
impl SubAssign for MQRO
Source§fn sub_assign(&mut self, rhs: MQRO)
fn sub_assign(&mut self, rhs: MQRO)
Performs the
-= operation. Read moreimpl Copy for MQRO
impl Eq for MQRO
impl StructuralPartialEq for MQRO
Auto Trait Implementations§
impl Freeze for MQRO
impl RefUnwindSafe for MQRO
impl Send for MQRO
impl Sync for MQRO
impl Unpin for MQRO
impl UnwindSafe for MQRO
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