pub struct BackupExecutionIntegrityReport {
pub plan_id: String,
pub run_id: String,
pub verified: bool,
pub plan_operations: usize,
pub journal_operations: usize,
}Expand description
BackupExecutionIntegrityReport
Fields§
§plan_id: String§run_id: String§verified: bool§plan_operations: usize§journal_operations: usizeTrait Implementations§
Source§impl Clone for BackupExecutionIntegrityReport
impl Clone for BackupExecutionIntegrityReport
Source§fn clone(&self) -> BackupExecutionIntegrityReport
fn clone(&self) -> BackupExecutionIntegrityReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackupExecutionIntegrityReport
impl<'de> Deserialize<'de> for BackupExecutionIntegrityReport
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 BackupExecutionIntegrityReport
impl PartialEq for BackupExecutionIntegrityReport
Source§fn eq(&self, other: &BackupExecutionIntegrityReport) -> bool
fn eq(&self, other: &BackupExecutionIntegrityReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BackupExecutionIntegrityReport
impl StructuralPartialEq for BackupExecutionIntegrityReport
Auto Trait Implementations§
impl Freeze for BackupExecutionIntegrityReport
impl RefUnwindSafe for BackupExecutionIntegrityReport
impl Send for BackupExecutionIntegrityReport
impl Sync for BackupExecutionIntegrityReport
impl Unpin for BackupExecutionIntegrityReport
impl UnsafeUnpin for BackupExecutionIntegrityReport
impl UnwindSafe for BackupExecutionIntegrityReport
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