pub enum ErrorSeverity {
Low,
Medium,
High,
Critical,
}Expand description
Error severity levels for logging and monitoring.
Variants§
Low
Low severity - algorithm can continue with degraded performance
Medium
Medium severity - operation failed but system remains stable
High
High severity - significant failure requiring user intervention
Critical
Critical severity - system integrity compromised
Trait Implementations§
Source§impl Clone for ErrorSeverity
impl Clone for ErrorSeverity
Source§fn clone(&self) -> ErrorSeverity
fn clone(&self) -> ErrorSeverity
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 ErrorSeverity
impl Debug for ErrorSeverity
Source§impl<'de> Deserialize<'de> for ErrorSeverity
impl<'de> Deserialize<'de> for ErrorSeverity
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 Ord for ErrorSeverity
impl Ord for ErrorSeverity
Source§fn cmp(&self, other: &ErrorSeverity) -> Ordering
fn cmp(&self, other: &ErrorSeverity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ErrorSeverity
impl PartialEq for ErrorSeverity
Source§impl PartialOrd for ErrorSeverity
impl PartialOrd for ErrorSeverity
Source§impl Serialize for ErrorSeverity
impl Serialize for ErrorSeverity
impl Copy for ErrorSeverity
impl Eq for ErrorSeverity
impl StructuralPartialEq for ErrorSeverity
Auto Trait Implementations§
impl Freeze for ErrorSeverity
impl RefUnwindSafe for ErrorSeverity
impl Send for ErrorSeverity
impl Sync for ErrorSeverity
impl Unpin for ErrorSeverity
impl UnwindSafe for ErrorSeverity
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