pub struct VerificationFailure {
pub path: VPath,
pub expected: Option<NodeState>,
pub actual: Option<NodeState>,
}Expand description
Expected and observed state for a failed operation or final-state check.
Fields§
§path: VPathPath that failed verification.
expected: Option<NodeState>State required by the artifact.
actual: Option<NodeState>State observed on the host.
Trait Implementations§
Source§impl Clone for VerificationFailure
impl Clone for VerificationFailure
Source§fn clone(&self) -> VerificationFailure
fn clone(&self) -> VerificationFailure
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 VerificationFailure
impl Debug for VerificationFailure
impl Eq for VerificationFailure
Source§impl PartialEq for VerificationFailure
impl PartialEq for VerificationFailure
impl StructuralPartialEq for VerificationFailure
Auto Trait Implementations§
impl Freeze for VerificationFailure
impl RefUnwindSafe for VerificationFailure
impl Send for VerificationFailure
impl Sync for VerificationFailure
impl Unpin for VerificationFailure
impl UnsafeUnpin for VerificationFailure
impl UnwindSafe for VerificationFailure
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