pub enum AnomalyVerdict {
Clean,
Alert {
alerts: Vec<String>,
},
Suppressed {
reason: String,
},
}Expand description
Verdict from the anomaly detector.
Variants§
Clean
No anomaly detected.
Alert
Anomalies were detected.
Suppressed
Alert budget exhausted — further alerts suppressed until cooldown.
Trait Implementations§
Source§impl Clone for AnomalyVerdict
impl Clone for AnomalyVerdict
Source§fn clone(&self) -> AnomalyVerdict
fn clone(&self) -> AnomalyVerdict
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 AnomalyVerdict
impl Debug for AnomalyVerdict
Source§impl PartialEq for AnomalyVerdict
impl PartialEq for AnomalyVerdict
impl Eq for AnomalyVerdict
impl StructuralPartialEq for AnomalyVerdict
Auto Trait Implementations§
impl Freeze for AnomalyVerdict
impl RefUnwindSafe for AnomalyVerdict
impl Send for AnomalyVerdict
impl Sync for AnomalyVerdict
impl Unpin for AnomalyVerdict
impl UnsafeUnpin for AnomalyVerdict
impl UnwindSafe for AnomalyVerdict
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