pub struct ImageMismatch {
pub addr: u32,
pub served: u8,
pub runtime: u8,
}Expand description
One dense-image byte that disagrees with the runtime image.
Fields§
§addr: u32The linear-memory address (= image index) of the offending byte.
served: u8The byte the image serves (0 when the image doesn’t reach addr —
zeroed RAM / no initializer shipped).
runtime: u8The byte the runtime image holds there (the truth).
Implementations§
Trait Implementations§
Source§impl Clone for ImageMismatch
impl Clone for ImageMismatch
Source§fn clone(&self) -> ImageMismatch
fn clone(&self) -> ImageMismatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImageMismatch
impl Debug for ImageMismatch
impl Eq for ImageMismatch
Source§impl PartialEq for ImageMismatch
impl PartialEq for ImageMismatch
impl StructuralPartialEq for ImageMismatch
Auto Trait Implementations§
impl Freeze for ImageMismatch
impl RefUnwindSafe for ImageMismatch
impl Send for ImageMismatch
impl Sync for ImageMismatch
impl Unpin for ImageMismatch
impl UnsafeUnpin for ImageMismatch
impl UnwindSafe for ImageMismatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.