#[repr(u8)]pub enum FlexspiPodfBusy {
FLEXSPI_PODF_BUSY_0 = 0,
FLEXSPI_PODF_BUSY_1 = 1,
}Variants§
FLEXSPI_PODF_BUSY_0 = 0
divider is not busy and its value represents the actual division.
FLEXSPI_PODF_BUSY_1 = 1
divider is busy with handshake process with module. The value read in the divider represents the previous value of the division factor, and after the handshake the written value of the flexspi_podf will be applied.
Implementations§
Trait Implementations§
Source§impl Clone for FlexspiPodfBusy
impl Clone for FlexspiPodfBusy
Source§fn clone(&self) -> FlexspiPodfBusy
fn clone(&self) -> FlexspiPodfBusy
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 FlexspiPodfBusy
impl Debug for FlexspiPodfBusy
Source§impl From<FlexspiPodfBusy> for u8
impl From<FlexspiPodfBusy> for u8
Source§fn from(val: FlexspiPodfBusy) -> u8
fn from(val: FlexspiPodfBusy) -> u8
Converts to this type from the input type.
Source§impl From<u8> for FlexspiPodfBusy
impl From<u8> for FlexspiPodfBusy
Source§fn from(val: u8) -> FlexspiPodfBusy
fn from(val: u8) -> FlexspiPodfBusy
Converts to this type from the input type.
Source§impl Ord for FlexspiPodfBusy
impl Ord for FlexspiPodfBusy
Source§fn cmp(&self, other: &FlexspiPodfBusy) -> Ordering
fn cmp(&self, other: &FlexspiPodfBusy) -> 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 FlexspiPodfBusy
impl PartialEq for FlexspiPodfBusy
Source§impl PartialOrd for FlexspiPodfBusy
impl PartialOrd for FlexspiPodfBusy
impl Copy for FlexspiPodfBusy
impl Eq for FlexspiPodfBusy
impl StructuralPartialEq for FlexspiPodfBusy
Auto Trait Implementations§
impl Freeze for FlexspiPodfBusy
impl RefUnwindSafe for FlexspiPodfBusy
impl Send for FlexspiPodfBusy
impl Sync for FlexspiPodfBusy
impl Unpin for FlexspiPodfBusy
impl UnwindSafe for FlexspiPodfBusy
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