pub struct StorageScrubReport {
pub findings: Vec<StorageScrubFinding>,
pub verified: StorageScrubVerifiedCounters,
pub objects_verified: u64,
pub total_objects: u64,
pub bytes_read: u64,
pub duration_ms: u64,
pub next_cursor: usize,
pub complete: bool,
}Fields§
§findings: Vec<StorageScrubFinding>§verified: StorageScrubVerifiedCounters§objects_verified: u64§total_objects: u64§bytes_read: u64§duration_ms: u64§next_cursor: usize§complete: boolTrait Implementations§
Source§impl Clone for StorageScrubReport
impl Clone for StorageScrubReport
Source§fn clone(&self) -> StorageScrubReport
fn clone(&self) -> StorageScrubReport
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 StorageScrubReport
impl Debug for StorageScrubReport
Source§impl Default for StorageScrubReport
impl Default for StorageScrubReport
Source§fn default() -> StorageScrubReport
fn default() -> StorageScrubReport
Returns the “default value” for a type. Read more
impl Eq for StorageScrubReport
Source§impl PartialEq for StorageScrubReport
impl PartialEq for StorageScrubReport
impl StructuralPartialEq for StorageScrubReport
Auto Trait Implementations§
impl Freeze for StorageScrubReport
impl RefUnwindSafe for StorageScrubReport
impl Send for StorageScrubReport
impl Sync for StorageScrubReport
impl Unpin for StorageScrubReport
impl UnsafeUnpin for StorageScrubReport
impl UnwindSafe for StorageScrubReport
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