#[non_exhaustive]pub enum Error {
InvalidFormat(String),
Crypto(String),
VerificationFailed {
details: String,
},
Flash(String),
Delta(String),
Storage(String),
Io(String),
InvalidParameter(String),
CapacityExceeded(String),
VersionMismatch {
expected: u16,
found: u16,
},
AntiRollback {
current: u64,
attempted: u64,
},
}Expand description
Main error type for the Speck library
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.
InvalidFormat(String)
Invalid module format or corrupted data
Crypto(String)
Cryptographic operation failure
VerificationFailed
Signature verification failed
Flash(String)
Flash storage operation error
Delta(String)
Delta patch application error
Storage(String)
Storage management error
Io(String)
I/O error (wrapper for std::io::Error in std builds)
InvalidParameter(String)
Invalid parameter provided
CapacityExceeded(String)
Operation would exceed capacity limits
VersionMismatch
Version mismatch or unsupported format
AntiRollback
Anti-rollback protection triggered
Implementations§
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()
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin 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