pub struct BehavioralDeviation {
pub deviation_type: DeviationType,
pub std_deviations: f64,
pub expected_value: f64,
pub actual_value: f64,
pub label: AnomalyType,
pub severity: SeverityLevel,
pub description: String,
}Expand description
A detected behavioral deviation.
Fields§
§deviation_type: DeviationTypeType of deviation.
std_deviations: f64Number of standard deviations from baseline.
expected_value: f64Expected value from baseline.
actual_value: f64Actual observed value.
label: AnomalyTypeSuggested anomaly label.
severity: SeverityLevelSeverity level.
description: StringDescription of the deviation.
Trait Implementations§
Source§impl Clone for BehavioralDeviation
impl Clone for BehavioralDeviation
Source§fn clone(&self) -> BehavioralDeviation
fn clone(&self) -> BehavioralDeviation
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 BehavioralDeviation
impl RefUnwindSafe for BehavioralDeviation
impl Send for BehavioralDeviation
impl Sync for BehavioralDeviation
impl Unpin for BehavioralDeviation
impl UnwindSafe for BehavioralDeviation
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