pub struct DecoderBenchmarkResult {
pub distance: u32,
pub union_find_avg_ns: f64,
pub partitioned_avg_ns: f64,
pub speedup: f64,
pub union_find_accuracy: f64,
pub partitioned_accuracy: f64,
}Expand description
Result for a single code distance’s decoder comparison.
Fields§
§distance: u32§union_find_avg_ns: f64§partitioned_avg_ns: f64§speedup: f64§union_find_accuracy: f64§partitioned_accuracy: f64Auto Trait Implementations§
impl Freeze for DecoderBenchmarkResult
impl RefUnwindSafe for DecoderBenchmarkResult
impl Send for DecoderBenchmarkResult
impl Sync for DecoderBenchmarkResult
impl Unpin for DecoderBenchmarkResult
impl UnsafeUnpin for DecoderBenchmarkResult
impl UnwindSafe for DecoderBenchmarkResult
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