[][src]Enum sdio_host::CurrentState

pub enum CurrentState {
    Ready,
    Identification,
    Standby,
    Transfer,
    Sending,
    Receiving,
    Programming,
    Disconnected,
    Error,
}

CURRENT_STATE enum. Used for R1 response in command queue mode.

Ref PLSS_v7_10 Table 4-75

Variants

Ready

Card state is ready

Identification

Card is in identification state

Standby

Card is in standby state

Transfer

Card is in transfer state

Sending

Card is sending an operation

Receiving

Card is receiving operation information

Programming

Card is in programming state

Disconnected

Card is disconnected

Error

Error

Trait Implementations

impl Clone for CurrentState[src]

impl Copy for CurrentState[src]

impl Debug for CurrentState[src]

impl Eq for CurrentState[src]

impl From<u8> for CurrentState[src]

impl PartialEq<CurrentState> for CurrentState[src]

impl StructuralEq for CurrentState[src]

impl StructuralPartialEq for CurrentState[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.