pub struct BackupIntegrityReport {
pub backup_id: String,
pub verified: bool,
pub manifest_members: usize,
pub journal_artifacts: usize,
pub durable_artifacts: usize,
pub artifacts: Vec<ArtifactIntegrityReport>,
}Expand description
BackupIntegrityReport
Fields§
§backup_id: String§verified: bool§manifest_members: usize§journal_artifacts: usize§durable_artifacts: usize§artifacts: Vec<ArtifactIntegrityReport>Trait Implementations§
Source§impl Clone for BackupIntegrityReport
impl Clone for BackupIntegrityReport
Source§fn clone(&self) -> BackupIntegrityReport
fn clone(&self) -> BackupIntegrityReport
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 BackupIntegrityReport
impl Debug for BackupIntegrityReport
Source§impl<'de> Deserialize<'de> for BackupIntegrityReport
impl<'de> Deserialize<'de> for BackupIntegrityReport
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 BackupIntegrityReport
impl PartialEq for BackupIntegrityReport
Source§impl Serialize for BackupIntegrityReport
impl Serialize for BackupIntegrityReport
impl Eq for BackupIntegrityReport
impl StructuralPartialEq for BackupIntegrityReport
Auto Trait Implementations§
impl Freeze for BackupIntegrityReport
impl RefUnwindSafe for BackupIntegrityReport
impl Send for BackupIntegrityReport
impl Sync for BackupIntegrityReport
impl Unpin for BackupIntegrityReport
impl UnsafeUnpin for BackupIntegrityReport
impl UnwindSafe for BackupIntegrityReport
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