pub struct StorageIntegrityScanReport {
pub checked_versions: usize,
pub checked_parts: usize,
pub failures: Vec<StorageIntegrityFailure>,
pub passed: bool,
}Fields§
§checked_versions: usize§checked_parts: usize§failures: Vec<StorageIntegrityFailure>§passed: boolTrait Implementations§
Source§impl Clone for StorageIntegrityScanReport
impl Clone for StorageIntegrityScanReport
Source§fn clone(&self) -> StorageIntegrityScanReport
fn clone(&self) -> StorageIntegrityScanReport
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 StorageIntegrityScanReport
impl Debug for StorageIntegrityScanReport
Source§impl Default for StorageIntegrityScanReport
impl Default for StorageIntegrityScanReport
Source§fn default() -> StorageIntegrityScanReport
fn default() -> StorageIntegrityScanReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for StorageIntegrityScanReport
impl PartialEq for StorageIntegrityScanReport
Source§fn eq(&self, other: &StorageIntegrityScanReport) -> bool
fn eq(&self, other: &StorageIntegrityScanReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StorageIntegrityScanReport
impl StructuralPartialEq for StorageIntegrityScanReport
Auto Trait Implementations§
impl Freeze for StorageIntegrityScanReport
impl RefUnwindSafe for StorageIntegrityScanReport
impl Send for StorageIntegrityScanReport
impl Sync for StorageIntegrityScanReport
impl Unpin for StorageIntegrityScanReport
impl UnsafeUnpin for StorageIntegrityScanReport
impl UnwindSafe for StorageIntegrityScanReport
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