#[repr(u8)]pub enum Txignore {
WRITETXDATA = 0,
IGNORETXDATA = 1,
}Variants§
WRITETXDATA = 0
Write transmit data. Transmit data must be written for each data exchange between master and slave. In slave mode, an underrun error occurs if transmit data is not provided before needed in a data frame.
IGNORETXDATA = 1
Ignore transmit data. Data can be received without transmitting data (after FIFOWR has been initialized to set TXIGNORE). No transmitter flags are generated. When configured with TXIGNORE = 1, the slave sets the data to always 0.
Implementations§
Trait Implementations§
Source§impl Ord for Txignore
impl Ord for Txignore
Source§impl PartialOrd for Txignore
impl PartialOrd for Txignore
impl Copy for Txignore
impl Eq for Txignore
impl StructuralPartialEq for Txignore
Auto Trait Implementations§
impl Freeze for Txignore
impl RefUnwindSafe for Txignore
impl Send for Txignore
impl Sync for Txignore
impl Unpin for Txignore
impl UnwindSafe for Txignore
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