#[repr(u8)]pub enum Flashdqsopt {
Val0 = 0,
Val1 = 1,
}Variants§
Val0 = 0
FlexSPI drives toggling SCLK output until it receives all flash read data bits. There will be an extra SCLK cycle after all read data bits are returned on SPI bus.
Val1 = 1
FlexSPI drives SCLK output according to read data size and pad number (no extra SCLK toggling). If there is DQS latency, FlexSPI receives less data than required. Never set this bit if there is DQS latency.
Implementations§
Source§impl Flashdqsopt
impl Flashdqsopt
Trait Implementations§
Source§impl Clone for Flashdqsopt
impl Clone for Flashdqsopt
Source§fn clone(&self) -> Flashdqsopt
fn clone(&self) -> Flashdqsopt
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Flashdqsopt
impl Debug for Flashdqsopt
Source§impl From<Flashdqsopt> for u8
impl From<Flashdqsopt> for u8
Source§fn from(val: Flashdqsopt) -> u8
fn from(val: Flashdqsopt) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Flashdqsopt
impl From<u8> for Flashdqsopt
Source§fn from(val: u8) -> Flashdqsopt
fn from(val: u8) -> Flashdqsopt
Converts to this type from the input type.
Source§impl Ord for Flashdqsopt
impl Ord for Flashdqsopt
Source§fn cmp(&self, other: &Flashdqsopt) -> Ordering
fn cmp(&self, other: &Flashdqsopt) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Flashdqsopt
impl PartialEq for Flashdqsopt
Source§impl PartialOrd for Flashdqsopt
impl PartialOrd for Flashdqsopt
impl Copy for Flashdqsopt
impl Eq for Flashdqsopt
impl StructuralPartialEq for Flashdqsopt
Auto Trait Implementations§
impl Freeze for Flashdqsopt
impl RefUnwindSafe for Flashdqsopt
impl Send for Flashdqsopt
impl Sync for Flashdqsopt
impl Unpin for Flashdqsopt
impl UnwindSafe for Flashdqsopt
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