pub enum SessionAlert {
Escalation(EscalationAlert),
ExtractionProbe(ExtractionIndicator),
TopicShift(TopicShiftAlert),
CumulativeRiskExceeded {
total: f64,
threshold: f64,
},
}Expand description
A discrete alert raised by session analysis.
Variants§
Escalation(EscalationAlert)
ExtractionProbe(ExtractionIndicator)
TopicShift(TopicShiftAlert)
CumulativeRiskExceeded
Trait Implementations§
Source§impl Clone for SessionAlert
impl Clone for SessionAlert
Source§fn clone(&self) -> SessionAlert
fn clone(&self) -> SessionAlert
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 moreAuto Trait Implementations§
impl Freeze for SessionAlert
impl RefUnwindSafe for SessionAlert
impl Send for SessionAlert
impl Sync for SessionAlert
impl Unpin for SessionAlert
impl UnsafeUnpin for SessionAlert
impl UnwindSafe for SessionAlert
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