pub enum LogLevel {
ERROR,
WARN,
INFO,
DEBUG,
TRACE,
}
Expand description
Represents the severity level of logs.
Variants§
ERROR
Errors that cause premature termination of operations.
WARN
Warnings that indicate potential issues.
INFO
Informational messages for normal operation.
DEBUG
Debug messages for detailed troubleshooting.
TRACE
Trace-level logs for in-depth diagnostics.
Trait Implementations§
Source§impl PartialOrd for LogLevel
impl PartialOrd for LogLevel
impl StructuralPartialEq for LogLevel
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnwindSafe for LogLevel
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