#[repr(u32)]pub enum LogLevel {
None = 0,
Diagnostic = 1,
Inform = 2,
Warning = 3,
Error = 4,
}
Expand description
Severity of a log item. https://stereokit.net/Pages/StereoKit/LogLevel.html
Variants§
None = 0
A default log level that indicates it has not yet been set
Diagnostic = 1
This is for diagnostic information, where you need to know details about what -exactly- is going on in the system. This info doesn’t surface by default.
Inform = 2
This is non-critical information, just to let you know what’s going on.
Warning = 3
Something bad has happened, but it’s still within the realm of what’s expected.
Error = 4
Danger Will Robinson! Something really bad just happened and needs fixing!
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