Struct stderrlog::StdErrLog

source ·
pub struct StdErrLog { /* private fields */ }
Expand description

Data specific to this logger

Implementations§

source§

impl StdErrLog

source

pub fn new() -> StdErrLog

creates a new stderr logger

source

pub fn verbosity<V: Into<LogLevelNum>>( &mut self, verbosity: V ) -> &mut StdErrLog

Sets the verbosity level of messages that will be displayed

Values can be supplied as:

  • usize
  • log::Level
  • log::LevelFilter
  • LogLevelNum

Values map as follows: 0 -> Error 1 -> Warn 2 -> Info 3 -> Debug 4 or higher -> Trace

source

pub fn quiet(&mut self, quiet: bool) -> &mut StdErrLog

silence all output, no matter the value of verbosity

source

pub fn show_level(&mut self, levels: bool) -> &mut StdErrLog

Enables or disables the use of levels in log messages (default is true)

source

pub fn timestamp(&mut self, timestamp: Timestamp) -> &mut StdErrLog

Enables or disables the use of timestamps in log messages

source

pub fn color(&mut self, choice: ColorChoice) -> &mut StdErrLog

Enables or disables the use of color in log messages

source

pub fn module<T: Into<String>>(&mut self, module: T) -> &mut StdErrLog

specify a module to allow to log to stderr

source

pub fn show_module_names(&mut self, show_module_names: bool) -> &mut StdErrLog

Enables or disables the use of module names in log messages

source

pub fn modules<T: Into<String>, I: IntoIterator<Item = T>>( &mut self, modules: I ) -> &mut StdErrLog

specify modules to allow to log to stderr

source

pub fn init(&mut self) -> Result<(), SetLoggerError>

sets the the logger as active

Trait Implementations§

source§

impl Clone for StdErrLog

source§

fn clone(&self) -> StdErrLog

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for StdErrLog

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for StdErrLog

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Log for StdErrLog

source§

fn enabled(&self, metadata: &Metadata<'_>) -> bool

Determines if a log message with the specified metadata would be logged. Read more
source§

fn log(&self, record: &Record<'_>)

Logs the Record. Read more
source§

fn flush(&self)

Flushes any buffered records.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.