[][src]Trait tracing_log::AsTrace

pub trait AsTrace: Sealed {
    type Trace;
    fn as_trace(&self) -> Self::Trace;
}
[]

Trait implemented for log types that can be converted to a tracing equivalent.

Associated Types

type Trace[]

The tracing type that this type can be converted into.

Required methods

fn as_trace(&self) -> Self::Trace[]

Returns the tracing equivalent of self.

Implementations on Foreign Types

impl<'a> AsTrace for Record<'a>[src][]

type Trace = Metadata<'a>

impl AsTrace for Level[src][]

type Trace = Level

Implementors