pub struct VerifyRollbackResult {
pub file: String,
pub status: VerifyRollbackStatus,
pub message: Option<String>,
pub current_hash: Option<String>,
pub expected_hash: Option<String>,
pub target_hash: Option<String>,
}Expand description
Result of verifying whether a single file can be rolled back.
Fields§
§file: String§status: VerifyRollbackStatus§message: Option<String>§current_hash: Option<String>§expected_hash: Option<String>§target_hash: Option<String>Trait Implementations§
Source§impl Clone for VerifyRollbackResult
impl Clone for VerifyRollbackResult
Source§fn clone(&self) -> VerifyRollbackResult
fn clone(&self) -> VerifyRollbackResult
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 moreAuto Trait Implementations§
impl Freeze for VerifyRollbackResult
impl RefUnwindSafe for VerifyRollbackResult
impl Send for VerifyRollbackResult
impl Sync for VerifyRollbackResult
impl Unpin for VerifyRollbackResult
impl UnsafeUnpin for VerifyRollbackResult
impl UnwindSafe for VerifyRollbackResult
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