pub trait AsLog: Sealed { type Log; fn as_log(&self) -> Self::Log; }
Trait implemented for tracing types that can be converted to a log equivalent.
tracing
log
The log type that this type can be converted into.
Returns the log equivalent of self.
self