Struct slog::LevelFilter
[−]
[src]
pub struct LevelFilter<D: Drain>(pub D, pub Level);
Drain
filtering records by Record
logging level
Wraps a drain and passes records to it, only if their level is at least given level.
TODO: Remove this type. This drain is a special case of Filter
, but
because Filter
can not use static dispatch ATM due to Rust limitations
that will be lifted in the future, it is a standalone type.
Reference: https://github.com/rust-lang/rust/issues/34511
Methods
impl<D: Drain> LevelFilter<D>
[src]
Trait Implementations
impl<D: Debug + Drain> Debug for LevelFilter<D>
[src]
impl<D: Clone + Drain> Clone for LevelFilter<D>
[src]
fn clone(&self) -> LevelFilter<D>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl<D: Drain> Drain for LevelFilter<D>
[src]
type Ok = Option<D::Ok>
Type returned by this drain Read more
type Err = D::Err
Type of potential errors that can be returned by this Drain
fn log(
&self,
record: &Record,
logger_values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
&self,
record: &Record,
logger_values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
Handle one logging statement (Record
) Read more
fn map<F, R>(self, f: F) -> R where
Self: Sized,
F: FnOnce(Self) -> R,
Self: Sized,
F: FnOnce(Self) -> R,
Pass Drain
through a closure, eg. to wrap into another Drain
. Read more
fn filter<F>(self, f: F) -> Filter<Self, F> where
Self: Sized,
F: FilterFn,
Self: Sized,
F: FilterFn,
Filter logging records passed to Drain
Read more
fn filter_level(self, level: Level) -> LevelFilter<Self> where
Self: Sized,
Self: Sized,
Filter logging records passed to Drain
(by level) Read more
fn map_err<F, E>(self, f: F) -> MapError<Self, E> where
Self: Sized,
F: MapErrFn<Self::Err, E>,
Self: Sized,
F: MapErrFn<Self::Err, E>,
Map logging errors returned by this drain Read more
fn ignore_res(self) -> IgnoreResult<Self> where
Self: Sized,
Self: Sized,
Ignore results returned by this drain Read more
fn fuse(self) -> Fuse<Self> where
Self::Err: Debug,
Self: Sized,
Self::Err: Debug,
Self: Sized,
Make Self
panic when returning any errors Read more