pub enum EepromError<BusError> {
Bus(BusError),
EepromStillBusy,
}
Expand description
All possible errors that may occur in device initialization
Variants§
Trait Implementations§
Source§impl<BusError: Debug> Debug for EepromError<BusError>
impl<BusError: Debug> Debug for EepromError<BusError>
Auto Trait Implementations§
impl<BusError> Freeze for EepromError<BusError>where
BusError: Freeze,
impl<BusError> RefUnwindSafe for EepromError<BusError>where
BusError: RefUnwindSafe,
impl<BusError> Send for EepromError<BusError>where
BusError: Send,
impl<BusError> Sync for EepromError<BusError>where
BusError: Sync,
impl<BusError> Unpin for EepromError<BusError>where
BusError: Unpin,
impl<BusError> UnwindSafe for EepromError<BusError>where
BusError: 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