pub struct BackupInspectionReport {Show 14 fields
pub backup_id: String,
pub manifest_backup_id: String,
pub journal_backup_id: String,
pub backup_id_matches: bool,
pub journal_complete: bool,
pub ready_for_verify: bool,
pub manifest_members: usize,
pub journal_artifacts: usize,
pub matched_artifacts: usize,
pub topology_receipt_mismatches: Vec<TopologyReceiptMismatch>,
pub missing_journal_artifacts: Vec<ArtifactReference>,
pub unexpected_journal_artifacts: Vec<ArtifactReference>,
pub path_mismatches: Vec<ArtifactPathMismatch>,
pub checksum_mismatches: Vec<ArtifactChecksumMismatch>,
}Expand description
BackupInspectionReport
Fields§
§backup_id: String§manifest_backup_id: String§journal_backup_id: String§backup_id_matches: bool§journal_complete: bool§ready_for_verify: bool§manifest_members: usize§journal_artifacts: usize§matched_artifacts: usize§topology_receipt_mismatches: Vec<TopologyReceiptMismatch>§missing_journal_artifacts: Vec<ArtifactReference>§unexpected_journal_artifacts: Vec<ArtifactReference>§path_mismatches: Vec<ArtifactPathMismatch>§checksum_mismatches: Vec<ArtifactChecksumMismatch>Trait Implementations§
Source§impl Clone for BackupInspectionReport
impl Clone for BackupInspectionReport
Source§fn clone(&self) -> BackupInspectionReport
fn clone(&self) -> BackupInspectionReport
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 BackupInspectionReport
impl Debug for BackupInspectionReport
Source§impl<'de> Deserialize<'de> for BackupInspectionReport
impl<'de> Deserialize<'de> for BackupInspectionReport
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 BackupInspectionReport
impl PartialEq for BackupInspectionReport
Source§impl Serialize for BackupInspectionReport
impl Serialize for BackupInspectionReport
impl Eq for BackupInspectionReport
impl StructuralPartialEq for BackupInspectionReport
Auto Trait Implementations§
impl Freeze for BackupInspectionReport
impl RefUnwindSafe for BackupInspectionReport
impl Send for BackupInspectionReport
impl Sync for BackupInspectionReport
impl Unpin for BackupInspectionReport
impl UnsafeUnpin for BackupInspectionReport
impl UnwindSafe for BackupInspectionReport
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