[][src]Struct imxrt_boot_gen::flexspi::WaitTimeConfigurationCommands

#[repr(transparent)]pub struct WaitTimeConfigurationCommands(_);

Wait time for all configuration commands

From the docs...

Available for device that support v1.1.0 FlexSPI configuration block. If it is greater than 0, ROM will wait waitTimeCfgCommands * 100us for all device memory configuration commands instead of using read status to wait until these commands complete.

Implementations

impl WaitTimeConfigurationCommands[src]

pub const fn disable() -> Self[src]

pub const fn new(wait_time_us: u16) -> Self[src]

Computes the wait time from the specified wait_time_us (microseconds)

The duration should be divisible by 100us, since the value is a factor scaled by 100us

Trait Implementations

impl Clone for WaitTimeConfigurationCommands[src]

impl Copy for WaitTimeConfigurationCommands[src]

impl Debug for WaitTimeConfigurationCommands[src]

impl Eq for WaitTimeConfigurationCommands[src]

impl PartialEq<WaitTimeConfigurationCommands> for WaitTimeConfigurationCommands[src]

impl StructuralEq for WaitTimeConfigurationCommands[src]

impl StructuralPartialEq for WaitTimeConfigurationCommands[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.