#[repr(u8)]pub enum Txfifosize {
FIFO_1 = 0,
FIFO_4 = 1,
FIFO_8 = 2,
FIFO_16 = 3,
FIFO_32 = 4,
FIFO_64 = 5,
FIFO_128 = 6,
FIFO_256 = 7,
}Variants§
FIFO_1 = 0
1
FIFO_4 = 1
4
FIFO_8 = 2
8
FIFO_16 = 3
16
FIFO_32 = 4
32
FIFO_64 = 5
64
FIFO_128 = 6
128
FIFO_256 = 7
256
Implementations§
Source§impl Txfifosize
impl Txfifosize
Trait Implementations§
Source§impl Clone for Txfifosize
impl Clone for Txfifosize
Source§fn clone(&self) -> Txfifosize
fn clone(&self) -> Txfifosize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Txfifosize
impl Debug for Txfifosize
Source§impl From<Txfifosize> for u8
impl From<Txfifosize> for u8
Source§fn from(val: Txfifosize) -> u8
fn from(val: Txfifosize) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Txfifosize
impl From<u8> for Txfifosize
Source§fn from(val: u8) -> Txfifosize
fn from(val: u8) -> Txfifosize
Converts to this type from the input type.
Source§impl Ord for Txfifosize
impl Ord for Txfifosize
Source§fn cmp(&self, other: &Txfifosize) -> Ordering
fn cmp(&self, other: &Txfifosize) -> Ordering
1.21.0 · 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
Source§impl PartialEq for Txfifosize
impl PartialEq for Txfifosize
Source§impl PartialOrd for Txfifosize
impl PartialOrd for Txfifosize
impl Copy for Txfifosize
impl Eq for Txfifosize
impl StructuralPartialEq for Txfifosize
Auto Trait Implementations§
impl Freeze for Txfifosize
impl RefUnwindSafe for Txfifosize
impl Send for Txfifosize
impl Sync for Txfifosize
impl Unpin for Txfifosize
impl UnwindSafe for Txfifosize
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