pub enum Error<SpiError, PinError> {
Spi(SpiError),
Pin(PinError),
}
Expand description
Formats the value using the given formatter. Read more
impl<SpiError, PinError> From<PinError> for Error<SpiError, PinError>
impl<SpiError, PinError> Send for Error<SpiError, PinError> where
PinError: Send,
SpiError: Send,
impl<SpiError, PinError> Sync for Error<SpiError, PinError> where
PinError: Sync,
SpiError: Sync,
impl<SpiError, PinError> Unpin for Error<SpiError, PinError> where
PinError: Unpin,
SpiError: Unpin,
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.