pub struct Duplicate<D1: Drain, D2: Drain>(pub D1, pub D2);
Expand description
Drain
duplicating records into two other Drain
s
Can be nested for more than two outputs.
Tuple Fields§
§0: D1
§1: D2
Implementations§
Trait Implementations§
Source§impl<D1: Drain, D2: Drain> Drain for Duplicate<D1, D2>
impl<D1: Drain, D2: Drain> Drain for Duplicate<D1, D2>
Source§type Err = (Result<<D1 as Drain>::Ok, <D1 as Drain>::Err>, Result<<D2 as Drain>::Ok, <D2 as Drain>::Err>)
type Err = (Result<<D1 as Drain>::Ok, <D1 as Drain>::Err>, Result<<D2 as Drain>::Ok, <D2 as Drain>::Err>)
Type of potential errors that can be returned by this
Drain
Source§fn log(
&self,
record: &Record<'_>,
logger_values: &OwnedKVList,
) -> Result<Self::Ok, Self::Err>
fn log( &self, record: &Record<'_>, logger_values: &OwnedKVList, ) -> Result<Self::Ok, Self::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<D1, D2> Freeze for Duplicate<D1, D2>
impl<D1, D2> RefUnwindSafe for Duplicate<D1, D2>where
D1: RefUnwindSafe,
D2: RefUnwindSafe,
impl<D1, D2> Send for Duplicate<D1, D2>
impl<D1, D2> Sync for Duplicate<D1, D2>
impl<D1, D2> Unpin for Duplicate<D1, D2>
impl<D1, D2> UnwindSafe for Duplicate<D1, D2>where
D1: UnwindSafe,
D2: 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