pub enum LogLevel {
Error,
Log,
}
Expand description
Determines the “output stream” a message should get printed to
Variants§
Error
Print the message to the Error
stream of the console, for instance
“stderr” for the EnvConsole
Log
Print the message to the Log
stream of the console, for instance
“stdout” for the EnvConsole
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