pub enum BeatOutcome {
Won,
Regressed,
}Expand description
The outcome of evaluating a measured value against a Beat’s pinned
threshold — the falsifiable verdict at the heart of apr beat-run.
Variants§
Won
aprender meets-or-beats the incumbent: measured is on the winning side of
beat_threshold per direction.
Regressed
aprender regressed below the pinned threshold — CI must fail.
Trait Implementations§
Source§impl Clone for BeatOutcome
impl Clone for BeatOutcome
Source§fn clone(&self) -> BeatOutcome
fn clone(&self) -> BeatOutcome
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 moreimpl Copy for BeatOutcome
Source§impl Debug for BeatOutcome
impl Debug for BeatOutcome
Source§impl<'de> Deserialize<'de> for BeatOutcome
impl<'de> Deserialize<'de> for BeatOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BeatOutcome
Source§impl PartialEq for BeatOutcome
impl PartialEq for BeatOutcome
Source§impl Serialize for BeatOutcome
impl Serialize for BeatOutcome
impl StructuralPartialEq for BeatOutcome
Auto Trait Implementations§
impl Freeze for BeatOutcome
impl RefUnwindSafe for BeatOutcome
impl Send for BeatOutcome
impl Sync for BeatOutcome
impl Unpin for BeatOutcome
impl UnsafeUnpin for BeatOutcome
impl UnwindSafe for BeatOutcome
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.