pub enum Logging {
None,
StdOut,
}
Expand description
What method of logging for this library to use.
Variants§
None
Don’t perform any logging
StdOut
Use STDOUT for logging. This may be attractive if you are relying on the output of this library to configure your logging system and still want to see what’s going on here before the system is configured.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Logging
impl RefUnwindSafe for Logging
impl Send for Logging
impl Sync for Logging
impl Unpin for Logging
impl UnwindSafe for Logging
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