pub struct BenchBatchSummary {
pub total_records: usize,
pub candidate_pairs: usize,
pub auto_matched: usize,
pub borderline: usize,
pub auto_rejected: usize,
pub elapsed_ms: u64,
pub link_mode: String,
pub dataset: String,
}Expand description
A lightweight BatchReport-like view used by BenchResultWriter.
This avoids a direct dependency on zer-pipeline from zer-adapters.
Fields§
§total_records: usize§candidate_pairs: usize§auto_matched: usize§borderline: usize§auto_rejected: usize§elapsed_ms: u64§link_mode: String§dataset: StringAuto Trait Implementations§
impl Freeze for BenchBatchSummary
impl RefUnwindSafe for BenchBatchSummary
impl Send for BenchBatchSummary
impl Sync for BenchBatchSummary
impl Unpin for BenchBatchSummary
impl UnsafeUnpin for BenchBatchSummary
impl UnwindSafe for BenchBatchSummary
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