pub struct BatchValidationStats {
pub golden: Vec<ValidatedTrace>,
pub consensus: Vec<ValidatedTrace>,
pub unverified: Vec<(ValidatedTrace, String)>,
pub failed: Vec<(ValidatedTrace, String)>,
}Expand description
Statistics from batch trace validation.
Fields§
§golden: Vec<ValidatedTrace>§consensus: Vec<ValidatedTrace>§unverified: Vec<(ValidatedTrace, String)>§failed: Vec<(ValidatedTrace, String)>Implementations§
Source§impl BatchValidationStats
impl BatchValidationStats
Sourcepub fn write_jsonl_split(
&self,
out_dir: &str,
prefix: &str,
) -> Result<SplitWriteStats>
pub fn write_jsonl_split( &self, out_dir: &str, prefix: &str, ) -> Result<SplitWriteStats>
Trait Implementations§
Source§impl Clone for BatchValidationStats
impl Clone for BatchValidationStats
Source§fn clone(&self) -> BatchValidationStats
fn clone(&self) -> BatchValidationStats
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 BatchValidationStats
impl Debug for BatchValidationStats
Source§impl Default for BatchValidationStats
impl Default for BatchValidationStats
Source§fn default() -> BatchValidationStats
fn default() -> BatchValidationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchValidationStats
impl RefUnwindSafe for BatchValidationStats
impl Send for BatchValidationStats
impl Sync for BatchValidationStats
impl Unpin for BatchValidationStats
impl UnsafeUnpin for BatchValidationStats
impl UnwindSafe for BatchValidationStats
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