Trait tracing_subscriber::field::MakeOutput[][src]

pub trait MakeOutput<T, Out> where
    Self: MakeVisitor<T> + Sealed<(T, Out)>,
    Self::Visitor: VisitOutput<Out>, 
{ fn visit_with<F>(&self, target: T, fields: &F) -> Out
    where
        F: RecordFields
, { ... } }

Extension trait implemented for all MakeVisitor implementations that produce a visitor implementing VisitOutput.

Provided methods

fn visit_with<F>(&self, target: T, fields: &F) -> Out where
    F: RecordFields
[src]

Visits all fields in fields with a new visitor constructed from target.

Loading content...

Implementors

impl<T, Out, M> MakeOutput<T, Out> for M where
    M: MakeVisitor<T>,
    M::Visitor: VisitOutput<Out>, 
[src]

Loading content...