pub enum Error<SPIE: Debug> {
SpiError(SPIE),
NotConnected,
}
Expand description
Wraps an SPI error
TODO: eliminate this?
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<SPIE> Freeze for Error<SPIE>where
SPIE: Freeze,
impl<SPIE> RefUnwindSafe for Error<SPIE>where
SPIE: RefUnwindSafe,
impl<SPIE> Send for Error<SPIE>where
SPIE: Send,
impl<SPIE> Sync for Error<SPIE>where
SPIE: Sync,
impl<SPIE> Unpin for Error<SPIE>where
SPIE: Unpin,
impl<SPIE> UnwindSafe for Error<SPIE>where
SPIE: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more