pub enum RiskBand {
Low,
Medium,
High,
}Expand description
Aggregate risk classification per docs/03-plan-replay-design.md §7.4
(task-spec thresholds: ≤5% / (5%, 15%] / >15%).
Variants§
Low
Degraded share of classified (non-Unclear) samples ≤ 5%.
Medium
Degraded share in (5%, 15%].
High
Degraded share > 15%.
Implementations§
Trait Implementations§
impl Copy for RiskBand
Source§impl<'de> Deserialize<'de> for RiskBand
impl<'de> Deserialize<'de> for RiskBand
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 RiskBand
impl StructuralPartialEq for RiskBand
Auto Trait Implementations§
impl Freeze for RiskBand
impl RefUnwindSafe for RiskBand
impl Send for RiskBand
impl Sync for RiskBand
impl Unpin for RiskBand
impl UnsafeUnpin for RiskBand
impl UnwindSafe for RiskBand
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.