[][src]Enum lpc82x_pac::i2c0::stat::SLVDESEL_A

pub enum SLVDESEL_A {
    NOT_DESELECTED,
    DESELECTED,
}

Slave Deselected flag. This flag will cause an interrupt when set if enabled via INTENSET. This flag can be cleared by writing a 1 to this bit.

Value on reset: 0

Variants

NOT_DESELECTED

0: Not deselected. The Slave function has not become deselected. This does not mean that it is currently selected. That information can be found in the SLVSEL flag.

DESELECTED

1: Deselected. The Slave function has become deselected. This is specifically caused by the SLVSEL flag changing from 1 to 0. See the description of SLVSEL for details on when that event occurs.

Trait Implementations

impl From<SLVDESEL_A> for bool[src]

impl Debug for SLVDESEL_A[src]

impl PartialEq<SLVDESEL_A> for SLVDESEL_A[src]

impl Copy for SLVDESEL_A[src]

impl Clone for SLVDESEL_A[src]

Auto Trait Implementations

impl Unpin for SLVDESEL_A

impl Send for SLVDESEL_A

impl Sync for SLVDESEL_A

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<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