#[repr(u32)]pub enum BMLogLevel {
None = 0,
Error = 1,
Warning = 2,
Info = 3,
Debug = 4,
}Expand description
Busmust library log level, see super::api::BM_SetLogLevel for details.
Variants§
None = 0
Show nothing on debug console
Error = 1
Show only ERR level messages on debug console, note this is the default level for release versions
Warning = 2
Show ERR and WRN level messages on debug console
Info = 3
Show ERR|WRN|INF level messages on debug console
Debug = 4
Show all messages on debug console, including debug messages, note this is NOT available for release versions
Auto Trait Implementations§
impl Freeze for BMLogLevel
impl RefUnwindSafe for BMLogLevel
impl Send for BMLogLevel
impl Sync for BMLogLevel
impl Unpin for BMLogLevel
impl UnwindSafe for BMLogLevel
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