pub enum Error<CsE, SpiE> {
ChipSelectError(CsE),
SpiError(SpiE),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<CsE, SpiE> Freeze for Error<CsE, SpiE>
impl<CsE, SpiE> RefUnwindSafe for Error<CsE, SpiE>where
CsE: RefUnwindSafe,
SpiE: RefUnwindSafe,
impl<CsE, SpiE> Send for Error<CsE, SpiE>
impl<CsE, SpiE> Sync for Error<CsE, SpiE>
impl<CsE, SpiE> Unpin for Error<CsE, SpiE>
impl<CsE, SpiE> UnwindSafe for Error<CsE, SpiE>where
CsE: UnwindSafe,
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