pub struct RestoreApplyArtifactValidation {
pub backup_root: String,
pub checked_members: usize,
pub artifacts_present: bool,
pub checksums_verified: bool,
pub members_with_expected_checksums: usize,
pub checks: Vec<RestoreApplyArtifactCheck>,
}Expand description
RestoreApplyArtifactValidation
Fields§
§backup_root: String§checked_members: usize§artifacts_present: bool§checksums_verified: bool§members_with_expected_checksums: usize§checks: Vec<RestoreApplyArtifactCheck>Trait Implementations§
Source§impl Clone for RestoreApplyArtifactValidation
impl Clone for RestoreApplyArtifactValidation
Source§fn clone(&self) -> RestoreApplyArtifactValidation
fn clone(&self) -> RestoreApplyArtifactValidation
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<'de> Deserialize<'de> for RestoreApplyArtifactValidation
impl<'de> Deserialize<'de> for RestoreApplyArtifactValidation
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 RestoreApplyArtifactValidation
impl PartialEq for RestoreApplyArtifactValidation
Source§fn eq(&self, other: &RestoreApplyArtifactValidation) -> bool
fn eq(&self, other: &RestoreApplyArtifactValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RestoreApplyArtifactValidation
impl StructuralPartialEq for RestoreApplyArtifactValidation
Auto Trait Implementations§
impl Freeze for RestoreApplyArtifactValidation
impl RefUnwindSafe for RestoreApplyArtifactValidation
impl Send for RestoreApplyArtifactValidation
impl Sync for RestoreApplyArtifactValidation
impl Unpin for RestoreApplyArtifactValidation
impl UnsafeUnpin for RestoreApplyArtifactValidation
impl UnwindSafe for RestoreApplyArtifactValidation
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