pub enum BaselineStrategy {
FixedBaseline,
RollingAverage,
PreviousRun,
}Expand description
Baseline strategy for regression analysis
Variants§
FixedBaseline
Compare against fixed baseline
RollingAverage
Compare against rolling average of historical runs
PreviousRun
Compare against previous run
Trait Implementations§
Source§impl Clone for BaselineStrategy
impl Clone for BaselineStrategy
Source§fn clone(&self) -> BaselineStrategy
fn clone(&self) -> BaselineStrategy
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 BaselineStrategy
impl Debug for BaselineStrategy
Source§impl PartialEq for BaselineStrategy
impl PartialEq for BaselineStrategy
impl StructuralPartialEq for BaselineStrategy
Auto Trait Implementations§
impl Freeze for BaselineStrategy
impl RefUnwindSafe for BaselineStrategy
impl Send for BaselineStrategy
impl Sync for BaselineStrategy
impl Unpin for BaselineStrategy
impl UnwindSafe for BaselineStrategy
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