Struct bdrck::logging::LogFilter

source ·
pub struct LogFilter {
    pub module: Option<Regex>,
    pub level: LevelFilter,
}
Expand description

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

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

The associated error which can be returned from parsing.
Parses a string s to return a value of this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.