pub struct VerifySummary {
pub blocks: Vec<VerifyBlockResult>,
}Expand description
Per-block verify results. Mirrors what aver verify used to emit as
block-result NDJSON events — now folded into the analysis bundle
so a single record per file carries failures + scorecard.
Fields§
§blocks: Vec<VerifyBlockResult>Trait Implementations§
Source§impl Clone for VerifySummary
impl Clone for VerifySummary
Source§fn clone(&self) -> VerifySummary
fn clone(&self) -> VerifySummary
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 VerifySummary
impl Debug for VerifySummary
Auto Trait Implementations§
impl Freeze for VerifySummary
impl RefUnwindSafe for VerifySummary
impl Send for VerifySummary
impl Sync for VerifySummary
impl Unpin for VerifySummary
impl UnsafeUnpin for VerifySummary
impl UnwindSafe for VerifySummary
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