Enum Txfifosize
#[repr(u8)]pub enum Txfifosize {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Transmit FIFO. Buffer Depth
Value on reset: 1
Variants§
_000 = 0
0: Transmit FIFO/Buffer depth = 1 dataword.
_001 = 1
1: Transmit FIFO/Buffer depth = 4 datawords.
_010 = 2
2: Transmit FIFO/Buffer depth = 8 datawords.
_011 = 3
3: Transmit FIFO/Buffer depth = 16 datawords.
_100 = 4
4: Transmit FIFO/Buffer depth = 32 datawords.
_101 = 5
5: Transmit FIFO/Buffer depth = 64 datawords.
_110 = 6
6: Transmit FIFO/Buffer depth = 128 datawords.
_111 = 7
7: Transmit FIFO/Buffer depth = 256 datawords
Trait Implementations§
§impl Clone for Txfifosize
impl Clone for Txfifosize
§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 more§impl Debug for Txfifosize
impl Debug for Txfifosize
§impl Format for Txfifosize
impl Format for Txfifosize
§impl From<Txfifosize> for u8
impl From<Txfifosize> for u8
§fn from(variant: Txfifosize) -> Self
fn from(variant: Txfifosize) -> Self
Converts to this type from the input type.
§impl PartialEq for Txfifosize
impl PartialEq for Txfifosize
impl Copy for Txfifosize
impl Eq for Txfifosize
impl IsEnum 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