pub struct BenchmarkScenarioDelta {
pub id: String,
pub description: String,
pub wall_mean_ms: BenchmarkMetricDelta,
pub guest_import_mean_ms: Option<BenchmarkMetricDelta>,
pub startup_overhead_mean_ms: Option<BenchmarkMetricDelta>,
pub phase_mean_ms: Option<BenchmarkScenarioPhases<BenchmarkMetricDelta>>,
}Fields§
§id: String§description: String§wall_mean_ms: BenchmarkMetricDelta§guest_import_mean_ms: Option<BenchmarkMetricDelta>§startup_overhead_mean_ms: Option<BenchmarkMetricDelta>§phase_mean_ms: Option<BenchmarkScenarioPhases<BenchmarkMetricDelta>>Trait Implementations§
Source§impl Clone for BenchmarkScenarioDelta
impl Clone for BenchmarkScenarioDelta
Source§fn clone(&self) -> BenchmarkScenarioDelta
fn clone(&self) -> BenchmarkScenarioDelta
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 BenchmarkScenarioDelta
impl Debug for BenchmarkScenarioDelta
Source§impl PartialEq for BenchmarkScenarioDelta
impl PartialEq for BenchmarkScenarioDelta
Source§fn eq(&self, other: &BenchmarkScenarioDelta) -> bool
fn eq(&self, other: &BenchmarkScenarioDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BenchmarkScenarioDelta
impl Serialize for BenchmarkScenarioDelta
impl StructuralPartialEq for BenchmarkScenarioDelta
Auto Trait Implementations§
impl Freeze for BenchmarkScenarioDelta
impl RefUnwindSafe for BenchmarkScenarioDelta
impl Send for BenchmarkScenarioDelta
impl Sync for BenchmarkScenarioDelta
impl Unpin for BenchmarkScenarioDelta
impl UnsafeUnpin for BenchmarkScenarioDelta
impl UnwindSafe for BenchmarkScenarioDelta
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