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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more