[][src]Struct slog::Duplicate

pub struct Duplicate<D1: Drain, D2: Drain>(pub D1, pub D2);

Drain duplicating records into two other Drains

Can be nested for more than two outputs.

Implementations

impl<D1: Drain, D2: Drain> Duplicate<D1, D2>[src]

pub fn new(drain1: D1, drain2: D2) -> Self[src]

Create Duplicate

Trait Implementations

impl<D1: Clone + Drain, D2: Clone + Drain> Clone for Duplicate<D1, D2>[src]

impl<D1: Debug + Drain, D2: Debug + Drain> Debug for Duplicate<D1, D2>[src]

impl<D1: Drain, D2: Drain> Drain for Duplicate<D1, D2>[src]

type Ok = (D1::Ok, D2::Ok)

Type returned by this drain Read more

type Err = (Result<D1::Ok, D1::Err>, Result<D2::Ok, D2::Err>)

Type of potential errors that can be returned by this Drain

Auto Trait Implementations

impl<D1, D2> RefUnwindSafe for Duplicate<D1, D2> where
    D1: RefUnwindSafe,
    D2: RefUnwindSafe

impl<D1, D2> Send for Duplicate<D1, D2> where
    D1: Send,
    D2: Send

impl<D1, D2> Sync for Duplicate<D1, D2> where
    D1: Sync,
    D2: Sync

impl<D1, D2> Unpin for Duplicate<D1, D2> where
    D1: Unpin,
    D2: Unpin

impl<D1, D2> UnwindSafe for Duplicate<D1, D2> where
    D1: UnwindSafe,
    D2: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendRefUnwindSafeDrain for T where
    T: Drain + Send + RefUnwindSafe + ?Sized
[src]

impl<T> SendSyncRefUnwindSafeDrain for T where
    T: Drain + Send + Sync + RefUnwindSafe + ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> SendSyncUnwindSafeDrain for T where
    T: Drain + Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.