pub struct AnomalyPattern {
pub pattern_type: AnomalyType,
pub frequency: u64,
pub context: HashMap<String, String>,
pub suggested_fix: Option<String>,
}Expand description
Pattern detected during training/inference.
Fields§
§pattern_type: AnomalyTypePattern type.
frequency: u64Frequency of occurrence.
context: HashMap<String, String>Context information.
suggested_fix: Option<String>Suggested fix description.
Trait Implementations§
Source§impl Clone for AnomalyPattern
impl Clone for AnomalyPattern
Source§fn clone(&self) -> AnomalyPattern
fn clone(&self) -> AnomalyPattern
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 AnomalyPattern
impl Debug for AnomalyPattern
Source§impl<'de> Deserialize<'de> for AnomalyPattern
impl<'de> Deserialize<'de> for AnomalyPattern
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
Auto Trait Implementations§
impl Freeze for AnomalyPattern
impl RefUnwindSafe for AnomalyPattern
impl Send for AnomalyPattern
impl Sync for AnomalyPattern
impl Unpin for AnomalyPattern
impl UnsafeUnpin for AnomalyPattern
impl UnwindSafe for AnomalyPattern
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