#[repr(u32)]pub enum LogLevel {
Error = 0,
Info = 1,
Message = 2,
Debug = 3,
Warning = 4,
}
Expand description
Logging level
Variants§
Error = 0
Critical errors
Info = 1
Infos
Message = 2
General mesages
Debug = 3
Debug messages
Warning = 4
Warnings
Trait Implementations§
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