#[repr(u8)]pub enum LogLevel {
Trace = 0,
Debug = 1,
Info = 2,
}
Expand description
Logging levels for controlling message verbosity.
Determines the minimum severity level of messages that will be logged. Higher levels include all messages from lower levels.
Variants§
Trace = 0
Detailed trace information for debugging
Debug = 1
Debug information for development
Info = 2
General informational messages
Trait Implementations§
Source§impl From<LogLevel> for btck_LogLevel
impl From<LogLevel> for btck_LogLevel
Source§impl From<u8> for LogLevel
impl From<u8> for LogLevel
Source§fn from(value: btck_LogLevel) -> Self
fn from(value: btck_LogLevel) -> Self
Converts to this type from the input type.
impl Copy for LogLevel
impl Eq 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