pub enum ErrorSeverity {
Critical,
Error,
Warning,
Notice,
}Expand description
Error severity level for styling.
Variants§
Critical
Critical error - red, urgent
Error
Standard error - red
Warning
Warning - yellow
Notice
Notice - cyan (informational)
Implementations§
Source§impl ErrorSeverity
impl ErrorSeverity
Sourcepub fn color_code(&self) -> &'static str
pub fn color_code(&self) -> &'static str
Get the ANSI color code for this severity.
Sourcepub fn reset_code() -> &'static str
pub fn reset_code() -> &'static str
Get the ANSI reset code.
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 Display for ErrorSeverity
impl Display for ErrorSeverity
Source§impl PartialEq for ErrorSeverity
impl PartialEq 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