Struct MQMHBO

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

Message Handle To Buffer Options

Tuple Fields§

§0: i32

Implementations§

Source§

impl MQMHBO

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub const fn complement(self) -> MQMHBO

Source

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

Source

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

Source

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

Trait Implementations§

Source§

impl AsMut<i32> for MQMHBO

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 MQMHBO

Source§

fn as_ref(&self) -> &i32

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

impl Binary for MQMHBO

Source§

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

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

impl BitAnd for MQMHBO

Source§

type Output = MQMHBO

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitOr for MQMHBO

Source§

type Output = MQMHBO

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOrAssign for MQMHBO

Source§

fn bitor_assign(&mut self, rhs: MQMHBO)

Performs the |= operation. Read more
Source§

impl BitXor for MQMHBO

Source§

type Output = MQMHBO

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXorAssign for MQMHBO

Source§

fn bitxor_assign(&mut self, rhs: MQMHBO)

Performs the ^= operation. Read more
Source§

impl Clone for MQMHBO

Source§

fn clone(&self) -> MQMHBO

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 MQMHBO

Source§

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

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

impl Display for MQMHBO

Source§

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

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

impl Extend<MQMHBO> for MQMHBO

Source§

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

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 MQMHBO

Source§

fn from(value: i32) -> MQMHBO

Converts to this type from the input type.
Source§

impl FromIterator<MQMHBO> for MQMHBO

Source§

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

Creates a value from an iterator. Read more
Source§

impl FromStr for MQMHBO

Source§

type Err = <i32 as FromStr>::Err

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

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

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

impl HasConstLookup for MQMHBO

Source§

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

Retrieve the static constant lookup table
Source§

impl Hash for MQMHBO

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 MQMHBO

Source§

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

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

impl Not for MQMHBO

Source§

type Output = MQMHBO

The resulting type after applying the ! operator.
Source§

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

Performs the unary ! operation. Read more
Source§

impl PartialEq<i32> for MQMHBO

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 MQMHBO

Source§

fn eq(&self, other: &MQMHBO) -> 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 MQMHBO

Source§

type Output = MQMHBO

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign for MQMHBO

Source§

fn sub_assign(&mut self, rhs: MQMHBO)

Performs the -= operation. Read more
Source§

impl UpperHex for MQMHBO

Source§

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

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

impl Copy for MQMHBO

Source§

impl Eq for MQMHBO

Source§

impl StructuralPartialEq for MQMHBO

Auto Trait Implementations§

§

impl Freeze for MQMHBO

§

impl RefUnwindSafe for MQMHBO

§

impl Send for MQMHBO

§

impl Sync for MQMHBO

§

impl Unpin for MQMHBO

§

impl UnwindSafe for MQMHBO

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