pub enum LoggingMode {
Directory(PathBuf),
File(PathBuf),
Console,
}Variants§
Trait Implementations§
Source§impl Clone for LoggingMode
impl Clone for LoggingMode
Source§fn clone(&self) -> LoggingMode
fn clone(&self) -> LoggingMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LoggingMode
impl Debug for LoggingMode
Source§impl PartialEq for LoggingMode
impl PartialEq for LoggingMode
impl StructuralPartialEq for LoggingMode
Auto Trait Implementations§
impl Freeze for LoggingMode
impl RefUnwindSafe for LoggingMode
impl Send for LoggingMode
impl Sync for LoggingMode
impl Unpin for LoggingMode
impl UnsafeUnpin for LoggingMode
impl UnwindSafe for LoggingMode
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