#[non_exhaustive]pub enum Error {
Show 15 variants
OutOfCapabilities,
InvalidState {
got: State,
expected: State,
},
BufferTooBig {
got: usize,
expected: usize,
},
MaximumTransferSizeExceeded,
EraseLimitReached,
NoSpaceLeft,
UnrecognizedStatusCode(u8),
UnrecognizedStateCode(u8),
ResponseTooShort {
got: usize,
expected: usize,
},
StatusError(Status),
StateError(State),
UnknownProtocol,
InvalidInterfaceString,
MemoryLayout(Error),
InvalidAddress,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
OutOfCapabilities
The size of the data being transferred exceeds the DFU capabilities.
InvalidState
The device is in an invalid state (got: {got:?}, expected: {expected:?}).
BufferTooBig
Buffer size exceeds the maximum allowed.
MaximumTransferSizeExceeded
Maximum transfer size exceeded.
EraseLimitReached
Erasing limit reached.
NoSpaceLeft
Not enough space on device.
UnrecognizedStatusCode(u8)
Unrecognized status code: {0}
UnrecognizedStateCode(u8)
Unrecognized state code: {0}
ResponseTooShort
Device response is too short (got: {got:?}, expected: {expected:?}).
StatusError(Status)
Device status is in error: {0}
StateError(State)
Device state is in error: {0}
UnknownProtocol
Unknown DFU protocol
InvalidInterfaceString
Failed to parse dfuse interface string
MemoryLayout(Error)
Available on crate features
std only.Failed to parse dfuse address from interface string
InvalidAddress
Failed to parse dfuse address from interface string
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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