pub enum OtpDaiError {
BufSize {
buf_size: usize,
param_size: u32,
},
NotSupported,
Jtag {
source: Error,
},
WaitForIdle {
source: Error,
},
WriteDisabled,
WriteErrorAlreadyWritten {
value: u32,
},
}
Expand description
Failures to write OTP parameters through the Direct Access Interface.
Variants§
Trait Implementations§
Source§impl Debug for OtpDaiError
impl Debug for OtpDaiError
Source§impl Display for OtpDaiError
impl Display for OtpDaiError
Source§impl Error for OtpDaiError
impl Error for OtpDaiError
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 OtpDaiError
impl RefUnwindSafe for OtpDaiError
impl Send for OtpDaiError
impl Sync for OtpDaiError
impl Unpin for OtpDaiError
impl UnwindSafe for OtpDaiError
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