#[repr(u8)]pub enum SpiFrf {
STD = 0,
DUAL = 1,
QUAD = 2,
_RESERVED_3 = 3,
}
Variants§
STD = 0
Standard 1-bit SPI frame format; 1 bit per SCK, full-duplex
DUAL = 1
Dual-SPI frame format; two bits per SCK, half-duplex
QUAD = 2
Quad-SPI frame format; four bits per SCK, half-duplex
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for SpiFrf
impl Ord for SpiFrf
Source§impl PartialOrd for SpiFrf
impl PartialOrd for SpiFrf
impl Copy for SpiFrf
impl Eq for SpiFrf
impl StructuralPartialEq for SpiFrf
Auto Trait Implementations§
impl Freeze for SpiFrf
impl RefUnwindSafe for SpiFrf
impl Send for SpiFrf
impl Sync for SpiFrf
impl Unpin for SpiFrf
impl UnwindSafe for SpiFrf
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