Struct MQOO

Source
#[repr(transparent)]
pub struct MQOO(pub i32);
Expand description

Open Options

Tuple Fields§

§0: i32

Implementations§

Source§

impl MQOO

Source

pub fn bitflags_list( &self, ) -> (impl Iterator<Item = (i32, &'static str)> + use<>, i32)

Source

pub const fn contains(self, other: MQOO) -> bool

Source

pub const fn union(self, other: MQOO) -> MQOO

Source

pub const fn intersection(self, other: MQOO) -> MQOO

Source

pub const fn intersects(self, other: MQOO) -> bool

Source

pub const fn complement(self) -> MQOO

Source

pub fn insert(&mut self, other: MQOO)

Source

pub fn remove(&mut self, other: MQOO)

Source

pub fn toggle(&mut self, other: MQOO)

Trait Implementations§

Source§

impl AsMut<i32> for MQOO

Source§

fn as_mut(&mut self) -> &mut i32

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsRef<i32> for MQOO

Source§

fn as_ref(&self) -> &i32

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Binary for MQOO

Source§

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl BitAnd for MQOO

Source§

type Output = MQOO

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: MQOO) -> <MQOO as BitAnd>::Output

Performs the & operation. Read more
Source§

impl BitOr for MQOO

Source§

type Output = MQOO

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: MQOO) -> <MQOO as BitOr>::Output

Performs the | operation. Read more
Source§

impl BitOrAssign for MQOO

Source§

fn bitor_assign(&mut self, rhs: MQOO)

Performs the |= operation. Read more
Source§

impl BitXor for MQOO

Source§

type Output = MQOO

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: MQOO) -> <MQOO as BitXor>::Output

Performs the ^ operation. Read more
Source§

impl BitXorAssign for MQOO

Source§

fn bitxor_assign(&mut self, rhs: MQOO)

Performs the ^= operation. Read more
Source§

impl Clone for MQOO

Source§

fn clone(&self) -> MQOO

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MQOO

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Display for MQOO

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Extend<MQOO> for MQOO

Source§

fn extend<T>(&mut self, iter: T)
where T: IntoIterator<Item = MQOO>,

Extends a collection with the contents of an iterator. Read more
Source§

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)

🔬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 From<i32> for MQOO

Source§

fn from(value: i32) -> MQOO

Converts to this type from the input type.
Source§

impl FromIterator<MQOO> for MQOO

Source§

fn from_iter<T>(iter: T) -> MQOO
where T: IntoIterator<Item = MQOO>,

Creates a value from an iterator. Read more
Source§

impl FromStr for MQOO

Source§

type Err = <i32 as FromStr>::Err

The associated error which can be returned from parsing.
Source§

fn from_str(name: &str) -> Result<MQOO, <MQOO as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl HasConstLookup for MQOO

Source§

fn const_lookup<'a>() -> &'a (impl ConstLookup + 'static)

Retrieve the static constant lookup table
Source§

impl Hash for MQOO

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LowerHex for MQOO

Source§

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Not for MQOO

Source§

type Output = MQOO

The resulting type after applying the ! operator.
Source§

fn not(self) -> <MQOO as Not>::Output

Performs the unary ! operation. Read more
Source§

impl OpenOption<'_, MQOO> for AlternateUserId

Source§

fn apply_param(&self, _: &mut OpenParamOption<'_, MQOO>)

Source§

impl<'b> OpenOption<'b, MQOO> for MQOO

Source§

fn apply_param(&self, param: &mut OpenParamOption<'b, Self>)

Source§

impl PartialEq<i32> for MQOO

Source§

fn eq(&self, other: &i32) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq for MQOO

Source§

fn eq(&self, other: &MQOO) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Sub for MQOO

Source§

type Output = MQOO

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: MQOO) -> <MQOO as Sub>::Output

Performs the - operation. Read more
Source§

impl SubAssign for MQOO

Source§

fn sub_assign(&mut self, rhs: MQOO)

Performs the -= operation. Read more
Source§

impl UpperHex for MQOO

Source§

fn fmt(&self, __derive_more_f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Copy for MQOO

Source§

impl Eq for MQOO

Source§

impl StructuralPartialEq for MQOO

Auto Trait Implementations§

§

impl Freeze for MQOO

§

impl RefUnwindSafe for MQOO

§

impl Send for MQOO

§

impl Sync for MQOO

§

impl Unpin for MQOO

§

impl UnwindSafe for MQOO

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more