pub enum DebugLoggerKind {
File(DebugFileLogger, DebugOptions),
Stdout(DebugOptions),
None,
}
Expand description
Debugging logger.
Variants§
File(DebugFileLogger, DebugOptions)
Log debugging information into a file.
Stdout(DebugOptions)
Log debugging information into standard output.
None
Don’t log debugging information.
Implementations§
Trait Implementations§
Source§impl Debug for DebugLoggerKind
impl Debug for DebugLoggerKind
Auto Trait Implementations§
impl Freeze for DebugLoggerKind
impl RefUnwindSafe for DebugLoggerKind
impl Send for DebugLoggerKind
impl Sync for DebugLoggerKind
impl Unpin for DebugLoggerKind
impl UnwindSafe for DebugLoggerKind
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