[][src]Struct enumflags2::BitFlags

#[repr(transparent)]
pub struct BitFlags<T: RawBitFlags> { /* fields omitted */ }

Represents a set of flags of some type T. The type must have the #[derive(BitFlags)] attribute applied.

Methods

impl<T> BitFlags<T> where
    T: RawBitFlags, 
[src]

pub unsafe fn new(val: T::Type) -> Self[src]

Create a new BitFlags unsafely, without checking if the bits form a valid bit pattern for the type.

Consider using from_bits or from_bits_truncate instead.

Safety

The argument must not have set bits at positions not corresponding to any flag.

pub fn empty() -> Self[src]

Create an empty BitFlags. Empty means 0.

pub fn all() -> Self[src]

Create a BitFlags with all flags set.

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

Returns true if all flags are set

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

Returns true if no flag is set

pub fn bits(self) -> T::Type[src]

Returns the underlying type value

pub fn intersects<B: Into<BitFlags<T>>>(self, other: B) -> bool[src]

Returns true if at least one flag is shared.

pub fn contains<B: Into<BitFlags<T>>>(self, other: B) -> bool[src]

Returns true if all flags are contained.

pub fn from_bits(bits: T::Type) -> Result<Self, FromBitsError<T>>[src]

Returns a BitFlags<T> if the raw value provided does not contain any illegal flags.

pub fn from_flag(flag: T) -> Self[src]

Turn a T into a BitFlags<T>. Also available as flag.into().

pub fn from_bits_truncate(bits: T::Type) -> Self[src]

Truncates flags that are illegal

pub fn toggle<B: Into<BitFlags<T>>>(&mut self, other: B)[src]

Toggles the matching bits

pub fn insert<B: Into<BitFlags<T>>>(&mut self, other: B)[src]

Inserts the flags into the BitFlag

pub fn remove<B: Into<BitFlags<T>>>(&mut self, other: B)[src]

Removes the matching flags

pub fn iter(self) -> impl Iterator<Item = T>[src]

Returns an iterator that yields each set flag

Trait Implementations

impl<T: RawBitFlags> From<T> for BitFlags<T>[src]

impl<T> Debug for BitFlags<T> where
    T: RawBitFlags + Debug
[src]

impl<T, B> PartialEq<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>> + Copy
[src]

impl<T> TryFrom<u8> for BitFlags<T> where
    T: RawBitFlags<Type = u8>, 
[src]

type Error = FromBitsError<T>

The type returned in the event of a conversion error.

impl<T> TryFrom<u16> for BitFlags<T> where
    T: RawBitFlags<Type = u16>, 
[src]

type Error = FromBitsError<T>

The type returned in the event of a conversion error.

impl<T> TryFrom<u32> for BitFlags<T> where
    T: RawBitFlags<Type = u32>, 
[src]

type Error = FromBitsError<T>

The type returned in the event of a conversion error.

impl<T> TryFrom<u64> for BitFlags<T> where
    T: RawBitFlags<Type = u64>, 
[src]

type Error = FromBitsError<T>

The type returned in the event of a conversion error.

impl<T> TryFrom<usize> for BitFlags<T> where
    T: RawBitFlags<Type = usize>, 
[src]

type Error = FromBitsError<T>

The type returned in the event of a conversion error.

impl<T> Not for BitFlags<T> where
    T: RawBitFlags, 
[src]

type Output = BitFlags<T>

The resulting type after applying the ! operator.

impl<T, B> BitAnd<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

type Output = BitFlags<T>

The resulting type after applying the & operator.

impl<T, B> BitOr<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

type Output = BitFlags<T>

The resulting type after applying the | operator.

impl<T, B> BitXor<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

type Output = BitFlags<T>

The resulting type after applying the ^ operator.

impl<T, B> BitAndAssign<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

impl<T, B> BitOrAssign<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

impl<T, B> BitXorAssign<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

impl<T: Copy + RawBitFlags> Copy for BitFlags<T> where
    T::Type: Copy
[src]

impl<T, B> FromIterator<B> for BitFlags<T> where
    T: RawBitFlags,
    B: Into<BitFlags<T>>, 
[src]

impl<T> Octal for BitFlags<T> where
    T: RawBitFlags,
    T::Type: Octal
[src]

impl<T> Binary for BitFlags<T> where
    T: RawBitFlags,
    T::Type: Binary
[src]

impl<T> LowerHex for BitFlags<T> where
    T: RawBitFlags,
    T::Type: LowerHex
[src]

impl<T> UpperHex for BitFlags<T> where
    T: RawBitFlags,
    T::Type: UpperHex
[src]

impl<T: Clone + RawBitFlags> Clone for BitFlags<T> where
    T::Type: Clone
[src]

impl<T> Default for BitFlags<T> where
    T: RawBitFlags, 
[src]

The default value returned is one with all flags unset, i. e. empty.

Auto Trait Implementations

impl<T> Unpin for BitFlags<T> where
    <T as RawBitFlags>::Type: Unpin

impl<T> Send for BitFlags<T> where
    <T as RawBitFlags>::Type: Send

impl<T> Sync for BitFlags<T> where
    <T as RawBitFlags>::Type: Sync

Blanket Implementations

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

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

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> Into<U> for T where
    U: From<T>, 
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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