pub enum LogLevel {
None,
Fatal,
Error,
Warn,
Info,
Verbose,
Debug,
Trace,
}
Expand description
The possible log levels that mpv can apply to log messages.
Variants§
None
disable logging
Fatal
critical/aborting errors
Error
simple errors
Warn
possible problems
Info
informational message
Verbose
noisy informational message
Debug
very noisy technical information
Trace
extremely noisy
Trait Implementations§
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