#[repr(u8)]pub enum Rxignore {
READ = 0,
IGNORE = 1,
}Variants§
READ = 0
Read received data. Received data must be read in order to allow transmission to progress. SPI transmit will halt when the receive data FIFO is full. In slave mode, an overrun error will occur if received data is not read before new data is received.
IGNORE = 1
Ignore received data. Received data is ignored, allowing transmission without reading unneeded received data. No receiver flags are generated.
Implementations§
Trait Implementations§
Source§impl Ord for Rxignore
impl Ord for Rxignore
Source§impl PartialOrd for Rxignore
impl PartialOrd for Rxignore
impl Copy for Rxignore
impl Eq for Rxignore
impl StructuralPartialEq for Rxignore
Auto Trait Implementations§
impl Freeze for Rxignore
impl RefUnwindSafe for Rxignore
impl Send for Rxignore
impl Sync for Rxignore
impl Unpin for Rxignore
impl UnwindSafe for Rxignore
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