pub enum GateScoreFlagKind {
NeverApproachesThreshold,
NearConstant,
}Expand description
The smell a GateScoreFlag names. Serde kebab-case (the GateKind
idiom) so the wire form IS the ticket’s vocabulary.
Variants§
NeverApproachesThreshold
Over a meaningful sample, no score ever came within
NEVER_APPROACHES_MARGIN of its threshold — the threshold is
never exercised, so it cannot distinguish anything.
NearConstant
Over a meaningful sample, the scores do not move (variance below
NEAR_CONSTANT_VARIANCE_EPSILON) — the score carries no
information about whatever the gate evaluated.
Implementations§
Trait Implementations§
Source§impl Clone for GateScoreFlagKind
impl Clone for GateScoreFlagKind
Source§fn clone(&self) -> GateScoreFlagKind
fn clone(&self) -> GateScoreFlagKind
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 GateScoreFlagKind
Source§impl Debug for GateScoreFlagKind
impl Debug for GateScoreFlagKind
Source§impl<'de> Deserialize<'de> for GateScoreFlagKind
impl<'de> Deserialize<'de> for GateScoreFlagKind
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 GateScoreFlagKind
Source§impl PartialEq for GateScoreFlagKind
impl PartialEq for GateScoreFlagKind
Source§impl Serialize for GateScoreFlagKind
impl Serialize for GateScoreFlagKind
impl StructuralPartialEq for GateScoreFlagKind
Auto Trait Implementations§
impl Freeze for GateScoreFlagKind
impl RefUnwindSafe for GateScoreFlagKind
impl Send for GateScoreFlagKind
impl Sync for GateScoreFlagKind
impl Unpin for GateScoreFlagKind
impl UnsafeUnpin for GateScoreFlagKind
impl UnwindSafe for GateScoreFlagKind
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