pub enum BincodeError {
DecodeError(DecodeError),
EncodeError(EncodeError),
}Expand description
An encode/decode-related error
This error enum should NEVER be raised. If you get it, file an issue: https://github.com/Oakchris1955/simple-fatfs/issues
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BincodeError
impl !RefUnwindSafe for BincodeError
impl Send for BincodeError
impl Sync for BincodeError
impl Unpin for BincodeError
impl !UnwindSafe for BincodeError
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