pub enum OutputDirName {
CurrentDir,
Custom(String),
}Expand description
The name of the directory where the log file is written to. Only applies if LoggingMode is File or FileAndConsole.
Defaults to Custom with the output directory being logs.
Variants§
CurrentDir
The log file is written to the current directory.
Custom(String)
The log file is written to a directory specified by the user.
Auto Trait Implementations§
impl Freeze for OutputDirName
impl RefUnwindSafe for OutputDirName
impl Send for OutputDirName
impl Sync for OutputDirName
impl Unpin for OutputDirName
impl UnwindSafe for OutputDirName
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