Struct fastiron_stats::structures::processed::ComparisonResults
source · pub struct ComparisonResults {
pub old: TimerReport,
pub new: TimerReport,
pub percents: [f64; 6],
}
Expand description
Structure used to hold comparison study results.
Fields§
§old: TimerReport
Old timer data.
new: TimerReport
New timer data.
percents: [f64; 6]
Relative change in percents.
Implementations§
Trait Implementations§
source§impl From<(TimerReport, TimerReport)> for ComparisonResults
impl From<(TimerReport, TimerReport)> for ComparisonResults
Custom From
implementation used to process the raw data at initialization.
source§fn from((old, new): (TimerReport, TimerReport)) -> Self
fn from((old, new): (TimerReport, TimerReport)) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComparisonResults
impl RefUnwindSafe for ComparisonResults
impl Send for ComparisonResults
impl Sync for ComparisonResults
impl Unpin for ComparisonResults
impl UnwindSafe for ComparisonResults
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