pub struct SummaryReport {
pub checks: Vec<ConservationReport>,
pub total: usize,
pub passed: usize,
pub failed: usize,
pub timestamp_ms: u64,
}Expand description
Summary report from EdgeVerifier.
Fields§
§checks: Vec<ConservationReport>§total: usize§passed: usize§failed: usize§timestamp_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for SummaryReport
impl Clone for SummaryReport
Source§fn clone(&self) -> SummaryReport
fn clone(&self) -> SummaryReport
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 moreAuto Trait Implementations§
impl Freeze for SummaryReport
impl RefUnwindSafe for SummaryReport
impl Send for SummaryReport
impl Sync for SummaryReport
impl Unpin for SummaryReport
impl UnsafeUnpin for SummaryReport
impl UnwindSafe for SummaryReport
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