pub enum RunningImageAgreement {
Match {
evidence: RunningImageEvidence,
},
Mismatch {
running: RunningImageEvidence,
disk: RunningImageEvidence,
},
Unavailable {
reason: RunningImageUnavailableReason,
},
Unknown {
tag: String,
body: OrderedJsonObject,
},
}Expand description
Whether the executable currently running agrees with the spawned image.
Variants§
Match
Fields
§
evidence: RunningImageEvidenceMismatch
Unknown
Future discriminator. body retains the complete ordered object; tag
is its decoded discriminator projection.
Trait Implementations§
Source§impl Clone for RunningImageAgreement
impl Clone for RunningImageAgreement
Source§fn clone(&self) -> RunningImageAgreement
fn clone(&self) -> RunningImageAgreement
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 RunningImageAgreement
impl Debug for RunningImageAgreement
Source§impl<'de> Deserialize<'de> for RunningImageAgreement
impl<'de> Deserialize<'de> for RunningImageAgreement
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RunningImageAgreement
impl PartialEq for RunningImageAgreement
Source§impl Serialize for RunningImageAgreement
impl Serialize for RunningImageAgreement
impl StructuralPartialEq for RunningImageAgreement
Auto Trait Implementations§
impl Freeze for RunningImageAgreement
impl RefUnwindSafe for RunningImageAgreement
impl Send for RunningImageAgreement
impl Sync for RunningImageAgreement
impl Unpin for RunningImageAgreement
impl UnsafeUnpin for RunningImageAgreement
impl UnwindSafe for RunningImageAgreement
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