pub trait Value: Sealed {
// Required method
fn record(&self, key: &Field, visitor: &mut dyn Visit);
}Expand description
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.
Required Methods§
Trait Implementations§
Implementations on Foreign Types§
Implementors§
impl Value for Empty
impl Value for dyn Error
Available on crate feature
std only.impl Value for dyn Error + Send
Available on crate feature
std only.impl Value for dyn Error + Send + Sync
Available on crate feature
std only.impl Value for dyn Error + Sync
Available on crate feature
std only.