pub enum BreachSeverity {
None,
Noise,
Breach,
AbsoluteBreach,
}Expand description
Severity of a detected breach.
Variants§
None
No breach detected.
Noise
Within noise tolerance.
Breach
Exceeded regression threshold.
AbsoluteBreach
Absolute SLO value exceeded.
Trait Implementations§
Source§impl Clone for BreachSeverity
impl Clone for BreachSeverity
Source§fn clone(&self) -> BreachSeverity
fn clone(&self) -> BreachSeverity
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 BreachSeverity
impl Debug for BreachSeverity
Source§impl PartialEq for BreachSeverity
impl PartialEq for BreachSeverity
impl Eq for BreachSeverity
impl StructuralPartialEq for BreachSeverity
Auto Trait Implementations§
impl Freeze for BreachSeverity
impl RefUnwindSafe for BreachSeverity
impl Send for BreachSeverity
impl Sync for BreachSeverity
impl Unpin for BreachSeverity
impl UnsafeUnpin for BreachSeverity
impl UnwindSafe for BreachSeverity
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,
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.