Struct Filter
pub struct Filter<D, F>(pub D, pub F)
where
D: Drain,
F: Fn(&Record<'_>) -> bool + 'static + Send + Sync;
Expand description
Drain
filtering records
Wraps another Drain
and passes Record
s to it, only if they satisfy a
given condition.
Tuple Fields§
§0: D
§1: F
Implementations§
Trait Implementations§
Source§impl<D, F> Drain for Filter<D, F>
impl<D, F> Drain for Filter<D, F>
Source§fn log(
&self,
record: &Record<'_>,
logger_values: &OwnedKVList,
) -> Result<<Filter<D, F> as Drain>::Ok, <Filter<D, F> as Drain>::Err>
fn log( &self, record: &Record<'_>, logger_values: &OwnedKVList, ) -> Result<<Filter<D, F> as Drain>::Ok, <Filter<D, F> as Drain>::Err>
Handle one logging statement (
Record
) Read moreSource§fn is_enabled(&self, level: Level) -> bool
fn is_enabled(&self, level: Level) -> bool
Avoid: Check if messages at the specified log level are maybe
enabled for this logger. Read more
Source§fn is_critical_enabled(&self) -> bool
fn is_critical_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn is_error_enabled(&self) -> bool
fn is_error_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn is_warning_enabled(&self) -> bool
fn is_warning_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn is_info_enabled(&self) -> bool
fn is_info_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn is_debug_enabled(&self) -> bool
fn is_debug_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn is_trace_enabled(&self) -> bool
fn is_trace_enabled(&self) -> bool
Avoid: See
is_enabled
Source§fn filter_level(self, level: Level) -> LevelFilter<Self>where
Self: Sized,
fn filter_level(self, level: Level) -> LevelFilter<Self>where
Self: Sized,
Filter logging records passed to
Drain
(by level) Read moreSource§fn map_err<F, E>(self, f: F) -> MapError<Self, E>
fn map_err<F, E>(self, f: F) -> MapError<Self, E>
Map logging errors returned by this drain Read more
Source§fn ignore_res(self) -> IgnoreResult<Self>where
Self: Sized,
fn ignore_res(self) -> IgnoreResult<Self>where
Self: Sized,
Ignore results returned by this drain Read more
Auto Trait Implementations§
impl<D, F> Freeze for Filter<D, F>
impl<D, F> RefUnwindSafe for Filter<D, F>where
D: RefUnwindSafe,
F: RefUnwindSafe,
impl<D, F> Send for Filter<D, F>where
D: Send,
impl<D, F> Sync for Filter<D, F>where
D: Sync,
impl<D, F> Unpin for Filter<D, F>
impl<D, F> UnwindSafe for Filter<D, F>where
D: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more