Enum Flvl
#[repr(u8)]pub enum Flvl {
Empty = 0,
Quarter1 = 1,
Quarter2 = 2,
Quarter3 = 3,
Quarter4 = 4,
Full = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
Empty = 0
FIFO empty
Quarter1 = 1
FIFO <= 1/4 but not empty
Quarter2 = 2
1/4 < FIFO <= 1/2
Quarter3 = 3
1/2 < FIFO <= 3/4
Quarter4 = 4
3/4 < FIFO but not full
Full = 5
FIFO full
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
impl Copy for Flvl
impl Eq for Flvl
§impl Ord for Flvl
impl Ord for Flvl
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for Flvl
impl PartialOrd for Flvl
impl StructuralPartialEq for Flvl
Auto Trait Implementations§
impl Freeze for Flvl
impl RefUnwindSafe for Flvl
impl Send for Flvl
impl Sync for Flvl
impl Unpin for Flvl
impl UnsafeUnpin for Flvl
impl UnwindSafe for Flvl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more