pub enum LogOutput {
Stderr,
Stdout,
File(PathBuf),
}Expand description
Where to write log output.
Variants§
Stderr
Write to standard error (default).
Stdout
Write to standard output.
File(PathBuf)
Append to the named file (path resolved relative to cwd at startup).
Implementations§
Trait Implementations§
impl Eq for LogOutput
impl StructuralPartialEq for LogOutput
Auto Trait Implementations§
impl Freeze for LogOutput
impl RefUnwindSafe for LogOutput
impl Send for LogOutput
impl Sync for LogOutput
impl Unpin for LogOutput
impl UnsafeUnpin for LogOutput
impl UnwindSafe for LogOutput
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