[][src]Struct tracing_subscriber::layer::Layered

pub struct Layered<L, I, S = I> { /* fields omitted */ }

A Subscriber composed of a Subscriber wrapped by one or more Layers.

Trait Implementations

impl<S, A, B> Layer<S> for Layered<A, B, S> where
    A: Layer<S>,
    B: Layer<S>,
    S: Subscriber
[src]

impl<L: Clone, I: Clone, S: Clone> Clone for Layered<L, I, S>[src]

impl<L: Debug, I: Debug, S: Debug> Debug for Layered<L, I, S>[src]

impl<L, S> Subscriber for Layered<L, S> where
    L: Layer<S>,
    S: Subscriber
[src]

Auto Trait Implementations

impl<L, I, S> Send for Layered<L, I, S> where
    I: Send,
    L: Send

impl<L, I, S> Unpin for Layered<L, I, S> where
    I: Unpin,
    L: Unpin

impl<L, I, S> Sync for Layered<L, I, S> where
    I: Sync,
    L: Sync

impl<L, I, S> UnwindSafe for Layered<L, I, S> where
    I: UnwindSafe,
    L: UnwindSafe

impl<L, I, S> RefUnwindSafe for Layered<L, I, S> where
    I: RefUnwindSafe,
    L: RefUnwindSafe

Blanket Implementations

impl<S> SubscriberExt for S where
    S: Subscriber
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Erased for T[src]