Enum rfm69::Error[][src]

pub enum Error<Ecs, Espi> {
    Cs(Ecs),
    Spi(Espi),
    Timeout,
    AesKeySize,
    SyncSize,
    BufferTooSmall,
    PacketTooLarge,
}

Variants

Cs(Ecs)
Spi(Espi)
Timeout
AesKeySize
SyncSize
BufferTooSmall
PacketTooLarge

Trait Implementations

impl<Ecs: Debug, Espi: Debug> Debug for Error<Ecs, Espi>[src]

Auto Trait Implementations

impl<Ecs, Espi> RefUnwindSafe for Error<Ecs, Espi> where
    Ecs: RefUnwindSafe,
    Espi: RefUnwindSafe
[src]

impl<Ecs, Espi> Send for Error<Ecs, Espi> where
    Ecs: Send,
    Espi: Send
[src]

impl<Ecs, Espi> Sync for Error<Ecs, Espi> where
    Ecs: Sync,
    Espi: Sync
[src]

impl<Ecs, Espi> Unpin for Error<Ecs, Espi> where
    Ecs: Unpin,
    Espi: Unpin
[src]

impl<Ecs, Espi> UnwindSafe for Error<Ecs, Espi> where
    Ecs: UnwindSafe,
    Espi: UnwindSafe
[src]

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.