pub enum ConsoleMode {
Stdout,
Stderr,
Mixed,
}Expand description
The output stream for the console. Only applies if LoggingMode is Console or FileAndConsole.
Defaults to Stdout.
Variants§
Stdout
Logs are written to stdout.
Stderr
Logs are written to stderr.
Mixed
Only log entries with a level of Error are written to stderr. All other log entries are written to stdout.
Trait Implementations§
Source§impl PartialEq for ConsoleMode
impl PartialEq for ConsoleMode
impl StructuralPartialEq for ConsoleMode
Auto Trait Implementations§
impl Freeze for ConsoleMode
impl RefUnwindSafe for ConsoleMode
impl Send for ConsoleMode
impl Sync for ConsoleMode
impl Unpin for ConsoleMode
impl UnwindSafe for ConsoleMode
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