Struct log::MaxLogLevelFilter
[−]
[src]
pub struct MaxLogLevelFilter(_);
A token providing read and write access to the global maximum log level filter.
The maximum log level is used as an optimization to avoid evaluating log messages that will be ignored by the logger. Any message with a level higher than the maximum log level filter will be ignored. A logger should make sure to keep the maximum log level filter in sync with its current configuration.
Methods
impl MaxLogLevelFilter
[src]
impl MaxLogLevelFilter
pub fn get(&self) -> LogLevelFilter
[src]
pub fn get(&self) -> LogLevelFilter
Gets the current maximum log level filter.
pub fn set(&self, level: LogLevelFilter)
[src]
pub fn set(&self, level: LogLevelFilter)
Sets the maximum log level.
Trait Implementations
impl Debug for MaxLogLevelFilter
[src]
impl Debug for MaxLogLevelFilter
Auto Trait Implementations
impl Send for MaxLogLevelFilter
impl Send for MaxLogLevelFilter
impl Sync for MaxLogLevelFilter
impl Sync for MaxLogLevelFilter