[][src]Struct fmtlog::Config

pub struct Config { /* fields omitted */ }

The logger settings.

Implementations

impl Config[src]

pub fn new() -> Self[src]

Create a new instance.

pub fn colorize<T: Into<Colorize>>(mut self: Self, colorize: T) -> Self[src]

Colorize the log.

Example

use fmtlog::Config;

assert_ne!(Config::new(), Config::new().colorize(false));

pub fn format<T: Into<String>>(mut self: Self, format: T) -> Self[src]

Set the format string.

Example

use fmtlog::Config;

assert_ne!(Config::new(), Config::new().format("[%L] %M\n"));

pub fn level<T: Into<LevelFilter>>(mut self: Self, level: T) -> Self[src]

Set the log level.

Example

use fmtlog::{Config, LevelFilter};

assert_eq!(Config::new(), Config::new().level(LevelFilter::Info))

pub fn modules<T: IntoIterator>(mut self: Self, modules: T) -> Self where
    T::Item: Into<String>, 
[src]

Set modules that enable the logger.

Example

use fmtlog::{Config, LevelFilter};

assert_eq!(Config::new(), Config::new().level(LevelFilter::Info))

pub fn module<T: Into<String>>(mut self: Self, module: T) -> Self[src]

Add a module that enables the logger.

Example

use fmtlog::{Config, LevelFilter};

assert_eq!(Config::new(), Config::new().level(LevelFilter::Info))

pub fn output<T: Into<Output>>(mut self: Self, output: T) -> Self[src]

Set the output stream.

Example

use fmtlog::Config;

assert_ne!(Config::new(), Config::new().output("log.txt"))

pub fn add_output<T: Into<Output>>(mut self: Self, output: T) -> Self[src]

Append the output stream.

Example

use fmtlog::{Config, Output};

assert_eq!(
    Config::new(),
    Config::new().outputs(Vec::<Output>::new()).add_output(Output::Stderr));

pub fn outputs<T: IntoIterator>(mut self: Self, outputs: T) -> Self where
    T::Item: Into<Output>, 
[src]

Set the output streams.

Example

use fmtlog::{Config, Output};

assert_eq!(Config::new(), Config::new().outputs(vec![Output::Stderr]))

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

impl Eq for Config[src]

impl PartialEq<Config> for Config[src]

impl StructuralEq for Config[src]

impl StructuralPartialEq for Config[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.