pub enum MsgLevel {
Info = 0,
Warn = 1,
Error = 2,
}Expand description
Message severity level.
Variants§
Info = 0
Informational message.
Warn = 1
Warning — non-fatal but potentially problematic.
Error = 2
Error — the operation cannot continue.
Trait Implementations§
impl Copy for MsgLevel
impl Eq for MsgLevel
impl StructuralPartialEq for MsgLevel
Auto Trait Implementations§
impl Freeze for MsgLevel
impl RefUnwindSafe for MsgLevel
impl Send for MsgLevel
impl Sync for MsgLevel
impl Unpin for MsgLevel
impl UnsafeUnpin for MsgLevel
impl UnwindSafe for MsgLevel
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