pub struct LoggerOptions {
pub verbose: bool,
}Expand description
Logger configuration options.
Fields§
§verbose: boolEnable verbose (debug level) logging.
Trait Implementations§
Source§impl Clone for LoggerOptions
impl Clone for LoggerOptions
Source§fn clone(&self) -> LoggerOptions
fn clone(&self) -> LoggerOptions
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 LoggerOptions
impl Debug for LoggerOptions
Source§impl Default for LoggerOptions
impl Default for LoggerOptions
Source§fn default() -> LoggerOptions
fn default() -> LoggerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoggerOptions
impl RefUnwindSafe for LoggerOptions
impl Send for LoggerOptions
impl Sync for LoggerOptions
impl Unpin for LoggerOptions
impl UnsafeUnpin for LoggerOptions
impl UnwindSafe for LoggerOptions
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