pub struct ComparativeBenchmarkAnalysis {
pub baseline_component: String,
pub comparison_components: Vec<String>,
pub metrics: Vec<ComparisonMetric>,
pub statistical_significance: f64,
pub effect_sizes: HashMap<String, f64>,
pub confidence_intervals: HashMap<String, (f64, f64)>,
}Expand description
Comparative benchmark analysis
Fields§
§baseline_component: String§comparison_components: Vec<String>§metrics: Vec<ComparisonMetric>§statistical_significance: f64§effect_sizes: HashMap<String, f64>§confidence_intervals: HashMap<String, (f64, f64)>Auto Trait Implementations§
impl Freeze for ComparativeBenchmarkAnalysis
impl RefUnwindSafe for ComparativeBenchmarkAnalysis
impl Send for ComparativeBenchmarkAnalysis
impl Sync for ComparativeBenchmarkAnalysis
impl Unpin for ComparativeBenchmarkAnalysis
impl UnwindSafe for ComparativeBenchmarkAnalysis
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more