pub enum SpiIfType {
Standard = 0,
DualIO = 1,
DualIOCont = 2,
QuadIO = 3,
QuadIOCont = 4,
}Expand description
SPI interface type for flash operations.
Variants§
Standard = 0
Standard SPI (1 data line).
DualIO = 1
Dual I/O (2 data lines).
DualIOCont = 2
Dual I/O continuous.
QuadIO = 3
Quad I/O (4 data lines).
QuadIOCont = 4
Quad I/O continuous.
Trait Implementations§
impl Copy for SpiIfType
impl Eq for SpiIfType
impl StructuralPartialEq for SpiIfType
Auto Trait Implementations§
impl Freeze for SpiIfType
impl RefUnwindSafe for SpiIfType
impl Send for SpiIfType
impl Sync for SpiIfType
impl Unpin for SpiIfType
impl UnsafeUnpin for SpiIfType
impl UnwindSafe for SpiIfType
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