[][src]Struct tracing_serde::SerdeStructVisitor

pub struct SerdeStructVisitor<S: SerializeStruct> { /* fields omitted */ }

Implements tracing_core::field::Visit for some serde::ser::SerializeStruct.

Methods

impl<S: SerializeStruct> SerdeStructVisitor<S>[src]

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.

Trait Implementations

impl<S: Debug + SerializeStruct> Debug for SerdeStructVisitor<S> where
    S::Error: Debug
[src]

impl<S> Visit for SerdeStructVisitor<S> where
    S: SerializeStruct
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for SerdeStructVisitor<S> where
    S: RefUnwindSafe,
    <S as SerializeStruct>::Error: RefUnwindSafe

impl<S> Send for SerdeStructVisitor<S> where
    S: Send,
    <S as SerializeStruct>::Error: Send

impl<S> Sync for SerdeStructVisitor<S> where
    S: Sync,
    <S as SerializeStruct>::Error: Sync

impl<S> Unpin for SerdeStructVisitor<S> where
    S: Unpin,
    <S as SerializeStruct>::Error: Unpin

impl<S> UnwindSafe for SerdeStructVisitor<S> where
    S: UnwindSafe,
    <S as SerializeStruct>::Error: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<F> Visit for F where
    F: FnMut(&Field, &dyn Debug), 
[src]