#[repr(u32)]pub enum LogLevel {
Panic = 0,
Error = 1,
Warning = 2,
Info = 3,
Debug = 4,
}Expand description
Logging level
Variants§
Panic = 0
The synth can’t function correctly any more
Error = 1
Serious error occurred
Warning = 2
Warning
Info = 3
Verbose informational messages
Debug = 4
Debugging messages
Implementations§
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