Enum FifoFull
#[repr(u8)]pub enum FifoFull {
B_0X0 = 0,
B_0X1 = 1,
}Variants§
B_0X0 = 0
FIFO is not full.
B_0X1 = 1
The internal data FIFO is full and four 32-bit random values can be read.
Implementations§
Trait Implementations§
§impl Ord for FifoFull
impl Ord for FifoFull
§impl PartialOrd for FifoFull
impl PartialOrd for FifoFull
impl Copy for FifoFull
impl Eq for FifoFull
impl StructuralPartialEq for FifoFull
Auto Trait Implementations§
impl Freeze for FifoFull
impl RefUnwindSafe for FifoFull
impl Send for FifoFull
impl Sync for FifoFull
impl Unpin for FifoFull
impl UnwindSafe for FifoFull
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