pub enum SPIError<SPIE> {
SPI(SPIE),
}Expand description
Error which occurred during an SPI transaction
Variants§
SPI(SPIE)
The SPI implementation returned an error
Trait Implementations§
impl<SPIE: Copy> Copy for SPIError<SPIE>
Auto Trait Implementations§
impl<SPIE> Freeze for SPIError<SPIE>where
SPIE: Freeze,
impl<SPIE> RefUnwindSafe for SPIError<SPIE>where
SPIE: RefUnwindSafe,
impl<SPIE> Send for SPIError<SPIE>where
SPIE: Send,
impl<SPIE> Sync for SPIError<SPIE>where
SPIE: Sync,
impl<SPIE> Unpin for SPIError<SPIE>where
SPIE: Unpin,
impl<SPIE> UnwindSafe for SPIError<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