logo
pub trait AsTrace: Sealed {
    type Trace;
    fn as_trace(&self) -> Self::Trace;
}
Expand description

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

Associated Types

The tracing type that this type can be converted into.

Required methods

Returns the tracing equivalent of self.

Implementations on Foreign Types

Implementors