#[repr(u8)]pub enum NumFifo {
NUM_FIFO_0 = 0,
NUM_FIFO_1 = 1,
NUM_FIFO_2 = 2,
NUM_FIFO_3 = 3,
NUM_FIFO_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
NUM_FIFO_0 = 0
N/A
NUM_FIFO_1 = 1
This design supports one result FIFO.
NUM_FIFO_2 = 2
This design supports two result FIFOs.
NUM_FIFO_3 = 3
This design supports three result FIFOs.
NUM_FIFO_4 = 4
This design supports four result FIFOs.
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
Source§impl Ord for NumFifo
impl Ord for NumFifo
Source§impl PartialOrd for NumFifo
impl PartialOrd for NumFifo
impl Copy for NumFifo
impl Eq for NumFifo
impl StructuralPartialEq for NumFifo
Auto Trait Implementations§
impl Freeze for NumFifo
impl RefUnwindSafe for NumFifo
impl Send for NumFifo
impl Sync for NumFifo
impl Unpin for NumFifo
impl UnwindSafe for NumFifo
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