#[repr(u8)]pub enum Rxiden {
DISABLED = 0,
IDLE_1 = 1,
IDLE_2 = 2,
IDLE_4 = 3,
IDLE_8 = 4,
IDLE_16 = 5,
IDLE_32 = 6,
IDLE_64 = 7,
}Variants§
DISABLED = 0
Disable RDRF assertion due to partially filled FIFO when receiver is idle.
IDLE_1 = 1
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 1 character.
IDLE_2 = 2
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 2 characters.
IDLE_4 = 3
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 4 characters.
IDLE_8 = 4
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 8 characters.
IDLE_16 = 5
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 16 characters.
IDLE_32 = 6
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 32 characters.
IDLE_64 = 7
Enable RDRF assertion due to partially filled FIFO when receiver is idle for 64 characters.
Implementations§
Trait Implementations§
Source§impl Ord for Rxiden
impl Ord for Rxiden
Source§impl PartialOrd for Rxiden
impl PartialOrd for Rxiden
impl Copy for Rxiden
impl Eq for Rxiden
impl StructuralPartialEq for Rxiden
Auto Trait Implementations§
impl Freeze for Rxiden
impl RefUnwindSafe for Rxiden
impl Send for Rxiden
impl Sync for Rxiden
impl Unpin for Rxiden
impl UnwindSafe for Rxiden
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