logo
pub trait AsLog: Sealed {
    type Log;

    fn as_log(&self) -> Self::Log;
}
Expand description

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

Required Associated Types

The log type that this type can be converted into.

Required Methods

Returns the log equivalent of self.

Implementations on Foreign Types

Implementors