pub trait Value: Sealed {
// Required method
fn record(&self, key: &Field, visitor: &mut dyn Visit);
}Available on crate feature
tracing only.Expand description
Re-export the tracing crate to have access to tracing macros
like info!, debug!, trace! and so on.
A field value of an erased type.
Implementors of Value may call the appropriate typed recording methods on
the visitor passed to their record method in order to indicate how
their data should be recorded.