pub enum VerifyRollbackStatus {
Ready,
AlreadyOriginal,
HashMismatch,
NotFound,
MissingBlob,
}Expand description
Status of a file rollback verification.
Variants§
Ready
File is ready to be rolled back (current hash matches afterHash).
AlreadyOriginal
File is already in the original state (current hash matches beforeHash).
HashMismatch
File hash does not match the expected afterHash.
NotFound
File was not found on disk.
MissingBlob
The before-hash blob needed for rollback is missing from the blobs directory.
Trait Implementations§
Source§impl Clone for VerifyRollbackStatus
impl Clone for VerifyRollbackStatus
Source§fn clone(&self) -> VerifyRollbackStatus
fn clone(&self) -> VerifyRollbackStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 VerifyRollbackStatus
impl Debug for VerifyRollbackStatus
Source§impl PartialEq for VerifyRollbackStatus
impl PartialEq for VerifyRollbackStatus
impl Eq for VerifyRollbackStatus
impl StructuralPartialEq for VerifyRollbackStatus
Auto Trait Implementations§
impl Freeze for VerifyRollbackStatus
impl RefUnwindSafe for VerifyRollbackStatus
impl Send for VerifyRollbackStatus
impl Sync for VerifyRollbackStatus
impl Unpin for VerifyRollbackStatus
impl UnsafeUnpin for VerifyRollbackStatus
impl UnwindSafe for VerifyRollbackStatus
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