[][src]Struct ruautd_framework::rx_global_header::RxGlobalControlFlags

pub struct RxGlobalControlFlags { /* fields omitted */ }

Implementations

impl RxGlobalControlFlags[src]

pub const NONE: RxGlobalControlFlags[src]

pub const LOOP_BEGIN: RxGlobalControlFlags[src]

pub const LOOP_END: RxGlobalControlFlags[src]

pub const SILENT: RxGlobalControlFlags[src]

pub const FORCE_FAN: RxGlobalControlFlags[src]

pub const IS_SYNC_FIRST_SYNC_N: RxGlobalControlFlags[src]

pub const MOD_SYNC_BASE_SHIFT: RxGlobalControlFlags[src]

pub const fn empty() -> RxGlobalControlFlags[src]

Returns an empty set of flags

pub const fn all() -> RxGlobalControlFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u8[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u8) -> Option<RxGlobalControlFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u8) -> RxGlobalControlFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u8) -> RxGlobalControlFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: RxGlobalControlFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: RxGlobalControlFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: RxGlobalControlFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: RxGlobalControlFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: RxGlobalControlFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: RxGlobalControlFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for RxGlobalControlFlags[src]

impl BitAnd<RxGlobalControlFlags> for RxGlobalControlFlags[src]

type Output = RxGlobalControlFlags

The resulting type after applying the & operator.

fn bitand(self, other: RxGlobalControlFlags) -> RxGlobalControlFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<RxGlobalControlFlags> for RxGlobalControlFlags[src]

fn bitand_assign(&mut self, other: RxGlobalControlFlags)[src]

Disables all flags disabled in the set.

impl BitOr<RxGlobalControlFlags> for RxGlobalControlFlags[src]

type Output = RxGlobalControlFlags

The resulting type after applying the | operator.

fn bitor(self, other: RxGlobalControlFlags) -> RxGlobalControlFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<RxGlobalControlFlags> for RxGlobalControlFlags[src]

fn bitor_assign(&mut self, other: RxGlobalControlFlags)[src]

Adds the set of flags.

impl BitXor<RxGlobalControlFlags> for RxGlobalControlFlags[src]

type Output = RxGlobalControlFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: RxGlobalControlFlags) -> RxGlobalControlFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<RxGlobalControlFlags> for RxGlobalControlFlags[src]

fn bitxor_assign(&mut self, other: RxGlobalControlFlags)[src]

Toggles the set of flags.

impl Clone for RxGlobalControlFlags[src]

impl Copy for RxGlobalControlFlags[src]

impl Debug for RxGlobalControlFlags[src]

impl Eq for RxGlobalControlFlags[src]

impl Extend<RxGlobalControlFlags> for RxGlobalControlFlags[src]

impl FromIterator<RxGlobalControlFlags> for RxGlobalControlFlags[src]

impl Hash for RxGlobalControlFlags[src]

impl LowerHex for RxGlobalControlFlags[src]

impl Not for RxGlobalControlFlags[src]

type Output = RxGlobalControlFlags

The resulting type after applying the ! operator.

fn not(self) -> RxGlobalControlFlags[src]

Returns the complement of this set of flags.

impl Octal for RxGlobalControlFlags[src]

impl Ord for RxGlobalControlFlags[src]

impl PartialEq<RxGlobalControlFlags> for RxGlobalControlFlags[src]

impl PartialOrd<RxGlobalControlFlags> for RxGlobalControlFlags[src]

impl StructuralEq for RxGlobalControlFlags[src]

impl StructuralPartialEq for RxGlobalControlFlags[src]

impl Sub<RxGlobalControlFlags> for RxGlobalControlFlags[src]

type Output = RxGlobalControlFlags

The resulting type after applying the - operator.

fn sub(self, other: RxGlobalControlFlags) -> RxGlobalControlFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<RxGlobalControlFlags> for RxGlobalControlFlags[src]

fn sub_assign(&mut self, other: RxGlobalControlFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for RxGlobalControlFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoPnt<Point<T, U2>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U3>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U4>> for T where
    T: Scalar
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,