pub enum Level {
Tracing(Level),
Console,
Chat(String),
Command(String),
}Expand description
Levels of logging in Steel
Variants§
Tracing(Level)
Standard levels from tracing
Console
Console input level
Chat(String)
Chat message level
Command(String)
Command level: Should contain the executor name
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnsafeUnpin for Level
impl UnwindSafe for Level
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