pub enum DriftType {
Sudden,
Gradual,
Recurring,
None,
}Expand description
Types of concept drift
Variants§
Sudden
Sudden drift - abrupt change
Gradual
Gradual drift - slow change over time
Recurring
Recurring drift - cyclic patterns
None
No drift detected
Trait Implementations§
impl StructuralPartialEq for DriftType
Auto Trait Implementations§
impl Freeze for DriftType
impl RefUnwindSafe for DriftType
impl Send for DriftType
impl Sync for DriftType
impl Unpin for DriftType
impl UnwindSafe for DriftType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more