pub struct IntegrityReport { /* private fields */ }Expand description
IntegrityReport Full integrity-scan output across all registered stores.
Implementations§
Source§impl IntegrityReport
impl IntegrityReport
Sourcepub const fn new(
stores: Vec<IntegrityStoreSnapshot>,
totals: IntegrityTotals,
) -> Self
pub const fn new( stores: Vec<IntegrityStoreSnapshot>, totals: IntegrityTotals, ) -> Self
Construct one integrity report payload.
Sourcepub const fn stores(&self) -> &[IntegrityStoreSnapshot]
pub const fn stores(&self) -> &[IntegrityStoreSnapshot]
Borrow per-store integrity snapshots.
Sourcepub const fn totals(&self) -> &IntegrityTotals
pub const fn totals(&self) -> &IntegrityTotals
Borrow aggregated integrity totals.
Trait Implementations§
Source§impl CandidType for IntegrityReport
impl CandidType for IntegrityReport
Source§impl Clone for IntegrityReport
impl Clone for IntegrityReport
Source§fn clone(&self) -> IntegrityReport
fn clone(&self) -> IntegrityReport
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 IntegrityReport
impl Debug for IntegrityReport
Source§impl Default for IntegrityReport
impl Default for IntegrityReport
Source§fn default() -> IntegrityReport
fn default() -> IntegrityReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrityReport
impl<'de> Deserialize<'de> for IntegrityReport
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
Auto Trait Implementations§
impl Freeze for IntegrityReport
impl RefUnwindSafe for IntegrityReport
impl Send for IntegrityReport
impl Sync for IntegrityReport
impl Unpin for IntegrityReport
impl UnsafeUnpin for IntegrityReport
impl UnwindSafe for IntegrityReport
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