[][src]Enum lpc55s6x_pac::i2c0::stat::MSTSTATE_A

pub enum MSTSTATE_A {
    IDLE,
    RECEIVE_READY,
    TRANSMIT_READY,
    NACK_ADDRESS,
    NACK_DATA,
}

Possible values of the field MSTSTATE

Variants

IDLE

Idle. The Master function is available to be used for a new transaction.

RECEIVE_READY

Receive ready. Received data available (Master Receiver mode). Address plus Read was previously sent and Acknowledged by slave.

TRANSMIT_READY

Transmit ready. Data can be transmitted (Master Transmitter mode). Address plus Write was previously sent and Acknowledged by slave.

NACK_ADDRESS

NACK Address. Slave NACKed address.

NACK_DATA

NACK Data. Slave NACKed transmitted data.

Trait Implementations

impl Debug for MSTSTATE_A[src]

impl PartialEq<MSTSTATE_A> for MSTSTATE_A[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for MSTSTATE_A[src]

impl From<MSTSTATE_A> for u8[src]

impl Clone for MSTSTATE_A[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for MSTSTATE_A

impl Send for MSTSTATE_A

impl Sync for MSTSTATE_A

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self