pub struct BenchResult {Show 21 fields
pub row_type: &'static str,
pub run_id: String,
pub mode: BenchMode,
pub doc: String,
pub preset: String,
pub encode_ms: u128,
pub decode_ms: u128,
pub cer: Option<f64>,
pub wer: Option<f64>,
pub numguard_f1: Option<f64>,
pub units_ok: Option<f64>,
pub tokens_raw: usize,
pub tokens_3dcf: usize,
pub savings_ratio: f64,
pub avg_cells_kept_per_page: f64,
pub pages: usize,
pub budget: Option<usize>,
pub numguard_mismatches: usize,
pub encode_pages_per_s: f64,
pub decode_pages_per_s: f64,
pub mem_peak_mb: f64,
}Fields§
§row_type: &'static str§run_id: String§mode: BenchMode§doc: String§preset: String§encode_ms: u128§decode_ms: u128§cer: Option<f64>§wer: Option<f64>§numguard_f1: Option<f64>§units_ok: Option<f64>§tokens_raw: usize§tokens_3dcf: usize§savings_ratio: f64§avg_cells_kept_per_page: f64§pages: usize§budget: Option<usize>§numguard_mismatches: usize§encode_pages_per_s: f64§decode_pages_per_s: f64§mem_peak_mb: f64Trait Implementations§
Source§impl Clone for BenchResult
impl Clone for BenchResult
Source§fn clone(&self) -> BenchResult
fn clone(&self) -> BenchResult
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 BenchResult
impl Debug for BenchResult
Auto Trait Implementations§
impl Freeze for BenchResult
impl RefUnwindSafe for BenchResult
impl Send for BenchResult
impl Sync for BenchResult
impl Unpin for BenchResult
impl UnwindSafe for BenchResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more