pub struct BenchmarkRunMetadata {
pub timestamp: String,
pub run_directory_name: String,
pub run_index: u32,
pub git_commit_hash: Option<String>,
pub git_commit_short_hash: Option<String>,
pub ic_testkit_version: String,
pub pocket_ic_version: String,
pub rustc_version: String,
pub benchmark_command: Option<String>,
pub selected_previous_run: Option<String>,
}Fields§
§timestamp: String§run_directory_name: String§run_index: u32§git_commit_hash: Option<String>§git_commit_short_hash: Option<String>§ic_testkit_version: String§pocket_ic_version: String§rustc_version: String§benchmark_command: Option<String>§selected_previous_run: Option<String>Trait Implementations§
Source§impl Clone for BenchmarkRunMetadata
impl Clone for BenchmarkRunMetadata
Source§fn clone(&self) -> BenchmarkRunMetadata
fn clone(&self) -> BenchmarkRunMetadata
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 BenchmarkRunMetadata
impl Debug for BenchmarkRunMetadata
Source§impl PartialEq for BenchmarkRunMetadata
impl PartialEq for BenchmarkRunMetadata
Source§fn eq(&self, other: &BenchmarkRunMetadata) -> bool
fn eq(&self, other: &BenchmarkRunMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BenchmarkRunMetadata
impl StructuralPartialEq for BenchmarkRunMetadata
Auto Trait Implementations§
impl Freeze for BenchmarkRunMetadata
impl RefUnwindSafe for BenchmarkRunMetadata
impl Send for BenchmarkRunMetadata
impl Sync for BenchmarkRunMetadata
impl Unpin for BenchmarkRunMetadata
impl UnsafeUnpin for BenchmarkRunMetadata
impl UnwindSafe for BenchmarkRunMetadata
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.