pub struct BenchmarkMetadata {
pub benchmark_suite: String,
pub timestamp: String,
pub git_commit: String,
pub git_branch: String,
pub operator: String,
pub hardware: HardwareInfo,
pub software: SoftwareInfo,
pub environment: EnvironmentConfig,
}Expand description
Environmental metadata for reproducibility
Fields§
§benchmark_suite: StringBenchmark suite name
timestamp: StringISO 8601 timestamp
git_commit: StringGit commit hash (short)
git_branch: StringGit branch name
operator: StringOperator (human or automated-ci)
hardware: HardwareInfoHardware specifications
software: SoftwareInfoSoftware environment
environment: EnvironmentConfigRuntime configuration
Trait Implementations§
Source§impl Clone for BenchmarkMetadata
impl Clone for BenchmarkMetadata
Source§fn clone(&self) -> BenchmarkMetadata
fn clone(&self) -> BenchmarkMetadata
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 BenchmarkMetadata
impl Debug for BenchmarkMetadata
Source§impl<'de> Deserialize<'de> for BenchmarkMetadata
impl<'de> Deserialize<'de> for BenchmarkMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BenchmarkMetadata
impl RefUnwindSafe for BenchmarkMetadata
impl Send for BenchmarkMetadata
impl Sync for BenchmarkMetadata
impl Unpin for BenchmarkMetadata
impl UnsafeUnpin for BenchmarkMetadata
impl UnwindSafe for BenchmarkMetadata
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