#[repr(u32)]pub enum LogLevel {
Critical = 0,
Error = 1,
Warning = 2,
Info = 3,
Trace = 4,
Off = 5,
}Expand description
Verbosity levels of debug messaging
Variants§
Critical = 0
< Most severe level of debug messaging.
Error = 1
< 2nd most severe level of debug messaging.
Warning = 2
< 3nd most severe level of debug messaging.
Info = 3
< 2nd least severe level of debug messaging.
Trace = 4
< Least severe level of debug messaging.
Off = 5
< No logging is performed
Trait Implementations§
Source§impl From<LogLevel> for k4a_log_level_t
impl From<LogLevel> for k4a_log_level_t
impl Copy 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