Struct tracing_serde::SerdeMapVisitor [−][src]
pub struct SerdeMapVisitor<S: SerializeMap> { /* fields omitted */ }
Implements tracing_core::field::Visit
for some serde::ser::SerializeMap
.
Implementations
impl<S> SerdeMapVisitor<S> where
S: SerializeMap,
[src]
impl<S> SerdeMapVisitor<S> where
S: SerializeMap,
[src]pub fn new(serializer: S) -> Self
[src]
Create a new map visitor.
pub fn finish(self) -> Result<S::Ok, S::Error>
[src]
Completes serializing the visited object, returning Ok(())
if all
fields were serialized correctly, or Error(S::Error)
if a field could
not be serialized.
pub fn take_serializer(self) -> Result<S, S::Error>
[src]
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
impl<S: Debug + SerializeMap> Debug for SerdeMapVisitor<S> where
S::Error: Debug,
[src]
impl<S: Debug + SerializeMap> Debug for SerdeMapVisitor<S> where
S::Error: Debug,
[src]impl<S> Visit for SerdeMapVisitor<S> where
S: SerializeMap,
[src]
impl<S> Visit for SerdeMapVisitor<S> where
S: SerializeMap,
[src]fn record_bool(&mut self, field: &Field, value: bool)
[src]
fn record_debug(&mut self, field: &Field, value: &dyn Debug)
[src]
fn record_u64(&mut self, field: &Field, value: u64)
[src]
fn record_i64(&mut self, field: &Field, value: i64)
[src]
fn record_str(&mut self, field: &Field, value: &str)
[src]
pub fn record_error(&mut self, field: &Field, value: &(dyn Error + 'static))
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for SerdeMapVisitor<S> where
S: RefUnwindSafe,
<S as SerializeMap>::Error: RefUnwindSafe,
S: RefUnwindSafe,
<S as SerializeMap>::Error: RefUnwindSafe,
impl<S> Send for SerdeMapVisitor<S> where
S: Send,
<S as SerializeMap>::Error: Send,
S: Send,
<S as SerializeMap>::Error: Send,
impl<S> Sync for SerdeMapVisitor<S> where
S: Sync,
<S as SerializeMap>::Error: Sync,
S: Sync,
<S as SerializeMap>::Error: Sync,
impl<S> Unpin for SerdeMapVisitor<S> where
S: Unpin,
<S as SerializeMap>::Error: Unpin,
S: Unpin,
<S as SerializeMap>::Error: Unpin,
impl<S> UnwindSafe for SerdeMapVisitor<S> where
S: UnwindSafe,
<S as SerializeMap>::Error: UnwindSafe,
S: UnwindSafe,
<S as SerializeMap>::Error: UnwindSafe,