pub enum ImageVerdict {
Consistent,
Mismatch(Vec<ImageMismatch>),
}Expand description
The verdict of a dense served-image gate (validate_served_image).
Variants§
Consistent
Every linear-memory byte the image (or zeroed RAM) serves equals the runtime image byte.
Mismatch(Vec<ImageMismatch>)
At least one served byte disagrees with the runtime image.
Trait Implementations§
Source§impl Clone for ImageVerdict
impl Clone for ImageVerdict
Source§fn clone(&self) -> ImageVerdict
fn clone(&self) -> ImageVerdict
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 ImageVerdict
impl Debug for ImageVerdict
impl Eq for ImageVerdict
Source§impl PartialEq for ImageVerdict
impl PartialEq for ImageVerdict
impl StructuralPartialEq for ImageVerdict
Auto Trait Implementations§
impl Freeze for ImageVerdict
impl RefUnwindSafe for ImageVerdict
impl Send for ImageVerdict
impl Sync for ImageVerdict
impl Unpin for ImageVerdict
impl UnsafeUnpin for ImageVerdict
impl UnwindSafe for ImageVerdict
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.