#[repr(C)]pub enum LogPriority {
UNKNOWN = 0,
DEFAULT = 1,
VERBOSE = 2,
DEBUG = 3,
INFO = 4,
WARN = 5,
ERROR = 6,
FATAL = 7,
SILENT = 8,
}
Variants§
Auto Trait Implementations§
impl Freeze for LogPriority
impl RefUnwindSafe for LogPriority
impl Send for LogPriority
impl Sync for LogPriority
impl Unpin for LogPriority
impl UnwindSafe for LogPriority
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