pub struct VerifyMismatch { /* private fields */ }Expand description
A genuine content mismatch found by verify_readback, as opposed to some other failure
(e.g. a JTAG/OpenOCD communication error) that can occur while a write is being verified.
Kept distinct so callers can tell “verification ran and found a real mismatch” apart from
“verification didn’t get a conclusive answer at all”.
Trait Implementations§
Source§impl Debug for VerifyMismatch
impl Debug for VerifyMismatch
Source§impl Display for VerifyMismatch
impl Display for VerifyMismatch
Source§impl Error for VerifyMismatch
impl Error for VerifyMismatch
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 VerifyMismatch
impl RefUnwindSafe for VerifyMismatch
impl Send for VerifyMismatch
impl Sync for VerifyMismatch
impl Unpin for VerifyMismatch
impl UnwindSafe for VerifyMismatch
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