Struct tracing_serde::SerdeMapVisitor
source · [−]pub struct SerdeMapVisitor<S: SerializeMap> { /* private fields */ }
Expand description
Implements tracing_core::field::Visit
for some serde::ser::SerializeMap
.
Implementations
Completes serializing the visited object, returning Ok(())
if all
fields were serialized correctly, or Error(S::Error)
if a field could
not be serialized.
Completes serializing the visited object, returning ownership of the underlying serializer
if all fields were serialized correctly, or Err(S::Error)
if a field could not be
serialized.
Trait Implementations
Visit a boolean value.
Visit a value implementing fmt::Debug
.
Visit an unsigned 64-bit integer value.
Visit a signed 64-bit integer value.
Visit a string value.
Visit a double-precision floating point value.
Records a type implementing Error
. Read more