logo
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
, { ... } }
Expand description

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

Provided Methods

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

Implementors