pub struct MaintenanceRunReport {
pub dry_run: bool,
pub integrity_before: Option<IntegrityCheckReport>,
pub repair: Option<RepairReport>,
pub compaction: Option<CompactionReport>,
pub synthesis: Option<SynthesisReport>,
pub integrity_after: Option<IntegrityCheckReport>,
}Fields§
§dry_run: bool§integrity_before: Option<IntegrityCheckReport>§repair: Option<RepairReport>§compaction: Option<CompactionReport>§synthesis: Option<SynthesisReport>§integrity_after: Option<IntegrityCheckReport>Trait Implementations§
Source§impl Clone for MaintenanceRunReport
impl Clone for MaintenanceRunReport
Source§fn clone(&self) -> MaintenanceRunReport
fn clone(&self) -> MaintenanceRunReport
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 Debug for MaintenanceRunReport
impl Debug for MaintenanceRunReport
Source§impl<'de> Deserialize<'de> for MaintenanceRunReport
impl<'de> Deserialize<'de> for MaintenanceRunReport
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 MaintenanceRunReport
impl PartialEq for MaintenanceRunReport
Source§fn eq(&self, other: &MaintenanceRunReport) -> bool
fn eq(&self, other: &MaintenanceRunReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaintenanceRunReport
impl Serialize for MaintenanceRunReport
impl StructuralPartialEq for MaintenanceRunReport
Auto Trait Implementations§
impl Freeze for MaintenanceRunReport
impl RefUnwindSafe for MaintenanceRunReport
impl Send for MaintenanceRunReport
impl Sync for MaintenanceRunReport
impl Unpin for MaintenanceRunReport
impl UnsafeUnpin for MaintenanceRunReport
impl UnwindSafe for MaintenanceRunReport
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