[][src]Struct spi_flash::sfdp::SFDPTiming

pub struct SFDPTiming {
    pub chip_erase_time_typ: Duration,
    pub chip_erase_time_max: Duration,
    pub first_byte_prog_time_typ: Duration,
    pub first_byte_prog_time_max: Duration,
    pub succ_byte_prog_time_typ: Duration,
    pub succ_byte_prog_time_max: Duration,
    pub page_prog_time_typ: Duration,
    pub page_prog_time_max: Duration,
}

Struct of timing information from JESD216A-compliant tables.

Note that erase instruction timing is stored inside the respective erase instructions.

Fields

chip_erase_time_typ: Duration

Typical time to erase the entire chip, if known.

chip_erase_time_max: Duration

Maximum time to erase the entire chip, if known.

first_byte_prog_time_typ: Duration

Typical time to program the first byte in a sequence, if known.

first_byte_prog_time_max: Duration

Maximum time to program the first byte in a sequence, if known.

succ_byte_prog_time_typ: Duration

Typical time to program each successive byte in a sequence, if known.

succ_byte_prog_time_max: Duration

Maximum time to program each successive byte in a sequence, if known.

page_prog_time_typ: Duration

Typical time to program a full page, if known.

page_prog_time_max: Duration

Maximum time to program a full page, if known.

Trait Implementations

impl Clone for SFDPTiming[src]

impl Copy for SFDPTiming[src]

impl Debug for SFDPTiming[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.