pub enum DriftLevel {
None,
Warning,
Drift,
}Expand description
The severity level reported by a drift detector.
Variants§
None
No drift detected; the stream appears stable.
Warning
A possible change has been detected but confidence is insufficient for a confirmed drift. Callers may wish to reduce confidence or increase monitoring.
Drift
A confirmed drift has been detected. Callers should consider
taking corrective action via a DriftStrategy.
Implementations§
Trait Implementations§
Source§impl Clone for DriftLevel
impl Clone for DriftLevel
Source§fn clone(&self) -> DriftLevel
fn clone(&self) -> DriftLevel
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 moreimpl Copy for DriftLevel
Source§impl Debug for DriftLevel
impl Debug for DriftLevel
Source§impl Default for DriftLevel
impl Default for DriftLevel
Source§fn default() -> DriftLevel
fn default() -> DriftLevel
Returns the “default value” for a type. Read more
impl Eq for DriftLevel
Source§impl PartialEq for DriftLevel
impl PartialEq for DriftLevel
impl StructuralPartialEq for DriftLevel
Auto Trait Implementations§
impl Freeze for DriftLevel
impl RefUnwindSafe for DriftLevel
impl Send for DriftLevel
impl Sync for DriftLevel
impl Unpin for DriftLevel
impl UnsafeUnpin for DriftLevel
impl UnwindSafe for DriftLevel
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