Struct bdrck::logging::LogFilter[][src]

pub struct LogFilter {
    pub module: Option<Regex>,
    pub level: LevelFilter,
}

A LogFilter is a single filter, perhaps one of many, that can be applied to log messages before actually outputting them.

Fields

module: Option<Regex>

This LogFilter is intended to be applied to any modules which match this regular expression. If this field is None instead, then this LogFilter should be applied to all modules.

level: LevelFilter

The LevelFilter which should be applied to matching modules.

Implementations

impl LogFilter[src]

pub fn max_level_for(&self, module_path: &str) -> Option<LevelFilter>[src]

The LevelFilter this LogFilter applies to the given module. If this LogFilter does not match the given module, then None is returned instead.

Trait Implementations

impl FromStr for LogFilter[src]

type Err = Error

The associated error which can be returned from parsing.

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,