Struct tracing_subscriber::field::delimited::Delimited
source · pub struct Delimited<D, V> { /* private fields */ }
Expand description
A MakeVisitor
wrapper that wraps a visitor that writes formatted output so
that a delimiter is inserted between writing formatted field values.
Implementations§
Trait Implementations§
source§impl<D, V, T> MakeVisitor<T> for Delimited<D, V>where
D: AsRef<str> + Clone,
V: MakeVisitor<T>,
V::Visitor: VisitFmt,
impl<D, V, T> MakeVisitor<T> for Delimited<D, V>where
D: AsRef<str> + Clone,
V: MakeVisitor<T>,
V::Visitor: VisitFmt,
§type Visitor = VisitDelimited<D, <V as MakeVisitor<T>>::Visitor>
type Visitor = VisitDelimited<D, <V as MakeVisitor<T>>::Visitor>
The visitor type produced by this
MakeVisitor
.source§fn make_visitor(&self, target: T) -> Self::Visitor
fn make_visitor(&self, target: T) -> Self::Visitor
Make a new visitor for the provided
target
.