Skip to main content

BenchmarkRow

Struct BenchmarkRow 

Source
pub struct BenchmarkRow {
Show 38 fields pub implementation: String, pub indicator_family: String, pub indicator_definition: String, pub case_id: String, pub mode: String, pub parameters: String, pub input_length: usize, pub output_kind: String, pub output_arity: Option<usize>, pub stats: Option<TimingStats>, pub output_begin: Option<usize>, pub output_count: Option<usize>, pub output_checksum: String, pub semantic_status: String, pub semantic_reason: String, pub timing_status: String, pub timing_reason: String, pub comparison_status: String, pub comparison_reason: String, pub warmup_iterations: Option<u64>, pub iterations_per_sample: Option<u64>, pub timed_boundary: String, pub fixture: String, pub input_checksum: String, pub ta_lib_version: String, pub ta_lib_revision: String, pub python_version: String, pub python_binding_version: String, pub python_ta_lib_version: String, pub numpy_version: String, pub rustc: String, pub cpu: String, pub os: String, pub arch: String, pub float_width: usize, pub features: String, pub commit: String, pub dirty: bool,
}

Fields§

§implementation: String§indicator_family: String§indicator_definition: String§case_id: String§mode: String§parameters: String§input_length: usize§output_kind: String§output_arity: Option<usize>§stats: Option<TimingStats>§output_begin: Option<usize>§output_count: Option<usize>§output_checksum: String§semantic_status: String§semantic_reason: String§timing_status: String§timing_reason: String§comparison_status: String§comparison_reason: String§warmup_iterations: Option<u64>§iterations_per_sample: Option<u64>§timed_boundary: String§fixture: String§input_checksum: String§ta_lib_version: String§ta_lib_revision: String§python_version: String§python_binding_version: String§python_ta_lib_version: String§numpy_version: String§rustc: String§cpu: String§os: String§arch: String§float_width: usize§features: String§commit: String§dirty: bool

Trait Implementations§

Source§

impl Clone for BenchmarkRow

Source§

fn clone(&self) -> BenchmarkRow

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BenchmarkRow

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for BenchmarkRow

Source§

fn eq(&self, other: &BenchmarkRow) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for BenchmarkRow

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.