Trait bitflags::Bits

source ·
pub trait Bits: Clone + Copy + PartialEq + BitAnd<Output = Self> + BitOr<Output = Self> + BitXor<Output = Self> + Not<Output = Self> + Sized + 'static {
    const EMPTY: Self;
    const ALL: Self;
}
Expand description

Underlying storage for a flags type.

Required Associated Constants§

The value of Self where no bits are set.

The value of Self where all bits are set.

Implementations on Foreign Types§

Implementors§