pub struct DriftDetectionConfig {
pub confidence_threshold: f32,
pub min_occurrences_for_pattern: usize,
pub strict_mode: bool,
}Expand description
Configuration for drift detection
Fields§
§confidence_threshold: f32Confidence threshold for detecting drift (0.0 to 1.0)
min_occurrences_for_pattern: usizeMinimum occurrences before considering a pattern established
strict_mode: boolEnable strict mode (more sensitive to deviations)
Trait Implementations§
Source§impl Clone for DriftDetectionConfig
impl Clone for DriftDetectionConfig
Source§fn clone(&self) -> DriftDetectionConfig
fn clone(&self) -> DriftDetectionConfig
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 DriftDetectionConfig
impl Debug for DriftDetectionConfig
Source§impl Default for DriftDetectionConfig
impl Default for DriftDetectionConfig
Source§impl<'de> Deserialize<'de> for DriftDetectionConfig
impl<'de> Deserialize<'de> for DriftDetectionConfig
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 DriftDetectionConfig
impl RefUnwindSafe for DriftDetectionConfig
impl Send for DriftDetectionConfig
impl Sync for DriftDetectionConfig
impl Unpin for DriftDetectionConfig
impl UnwindSafe for DriftDetectionConfig
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