[][src]Enum bmp280_core::bus::SpiError

pub enum SpiError<WE, TE, OE> {
    WriteError(WE),
    TransferError(TE),
    OutputPinError(OE),
}

Variants

WriteError(WE)
TransferError(TE)
OutputPinError(OE)

Trait Implementations

impl<WE: Debug, TE: Debug, OE: Debug> Debug for SpiError<WE, TE, OE>[src]

Auto Trait Implementations

impl<WE, TE, OE> Send for SpiError<WE, TE, OE> where
    OE: Send,
    TE: Send,
    WE: Send

impl<WE, TE, OE> Sync for SpiError<WE, TE, OE> where
    OE: Sync,
    TE: Sync,
    WE: Sync

impl<WE, TE, OE> Unpin for SpiError<WE, TE, OE> where
    OE: Unpin,
    TE: Unpin,
    WE: Unpin

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.