pub enum DriftLearningMode {
Behavioral,
Statistical,
Hybrid,
}Expand description
Drift learning mode
Variants§
Behavioral
Behavioral learning - adapts to behavior patterns
Statistical
Statistical learning - adapts to statistical patterns
Hybrid
Hybrid - combines behavioral and statistical
Trait Implementations§
Source§impl Clone for DriftLearningMode
impl Clone for DriftLearningMode
Source§fn clone(&self) -> DriftLearningMode
fn clone(&self) -> DriftLearningMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DriftLearningMode
impl Debug for DriftLearningMode
Source§impl Default for DriftLearningMode
impl Default for DriftLearningMode
Source§fn default() -> DriftLearningMode
fn default() -> DriftLearningMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DriftLearningMode
impl<'de> Deserialize<'de> for DriftLearningMode
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
Source§impl PartialEq for DriftLearningMode
impl PartialEq for DriftLearningMode
Source§fn eq(&self, other: &DriftLearningMode) -> bool
fn eq(&self, other: &DriftLearningMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DriftLearningMode
impl Serialize for DriftLearningMode
impl Eq for DriftLearningMode
impl StructuralPartialEq for DriftLearningMode
Auto Trait Implementations§
impl Freeze for DriftLearningMode
impl RefUnwindSafe for DriftLearningMode
impl Send for DriftLearningMode
impl Sync for DriftLearningMode
impl Unpin for DriftLearningMode
impl UnsafeUnpin for DriftLearningMode
impl UnwindSafe for DriftLearningMode
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