pub enum FastCommandError {
SpiError(SpiError),
FastCommandError,
}Expand description
An error resulting from fast command SPI transactions.
Variants§
SpiError(SpiError)
One of the SPI related errors.
See SpiError.
FastCommandError
An error executing a fast command.
Usually from attempting to execute fast commands in too quick of succession.
Auto Trait Implementations§
impl Freeze for FastCommandError
impl RefUnwindSafe for FastCommandError
impl Send for FastCommandError
impl Sync for FastCommandError
impl Unpin for FastCommandError
impl UnsafeUnpin for FastCommandError
impl UnwindSafe for FastCommandError
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