#[repr(u8)]pub enum FS_A {
Quarter1 = 0,
Quarter2 = 1,
Quarter3 = 2,
Quarter4 = 3,
Empty = 4,
Full = 5,
}
Expand description
FIFO status
Value on reset: 4
Variants§
Quarter1 = 0
0: 0 < fifo_level < 1/4
Quarter2 = 1
1: 1/4 <= fifo_level < 1/2
Quarter3 = 2
2: 1/2 <= fifo_level < 3/4
Quarter4 = 3
3: 3/4 <= fifo_level < full
Empty = 4
4: FIFO is empty
Full = 5
5: FIFO is full
Trait Implementations§
impl Copy for FS_A
impl StructuralPartialEq for FS_A
Auto Trait Implementations§
impl Freeze for FS_A
impl RefUnwindSafe for FS_A
impl Send for FS_A
impl Sync for FS_A
impl Unpin for FS_A
impl UnwindSafe for FS_A
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