pub enum IssueSeverity {
Info,
Warning,
Error,
Critical,
}Expand description
Severity levels for health issues and alerts
Used to categorize the importance and urgency of detected problems.
Variants§
Info
Informational message, no action required
Warning
Warning condition that may require attention
Error
Error condition affecting functionality
Critical
Critical issue requiring immediate attention
Trait Implementations§
Source§impl Clone for IssueSeverity
impl Clone for IssueSeverity
Source§fn clone(&self) -> IssueSeverity
fn clone(&self) -> IssueSeverity
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IssueSeverity
impl Debug for IssueSeverity
Source§impl PartialEq for IssueSeverity
impl PartialEq for IssueSeverity
impl StructuralPartialEq for IssueSeverity
Auto Trait Implementations§
impl Freeze for IssueSeverity
impl RefUnwindSafe for IssueSeverity
impl Send for IssueSeverity
impl Sync for IssueSeverity
impl Unpin for IssueSeverity
impl UnwindSafe for IssueSeverity
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