pub struct Analysis {
pub alpha: Nanoseconds<f64>,
pub beta: Nanoseconds<f64>,
pub r2: f64,
}
Expand description
A statistical analysis of a set of execution time samples.
Fields§
§alpha: Nanoseconds<f64>
The y-intercept of the simple linear regression model function.
beta: Nanoseconds<f64>
The slope of the simple linear regression model function.
r2: f64
The goodness of fit of the simple linear regression model function.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Analysis
impl RefUnwindSafe for Analysis
impl Send for Analysis
impl Sync for Analysis
impl Unpin for Analysis
impl UnwindSafe for Analysis
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