Struct tracing_subscriber::field::delimited::Delimited [−][src]
pub struct Delimited<D, V> { /* fields omitted */ }
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
Returns a new MakeVisitor
implementation that wraps inner
so that
it will format each visited field separated by the provided delimiter
.
Trait Implementations
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::Visitor>
type Visitor = VisitDelimited<D, V::Visitor>
The visitor type produced by this MakeVisitor
.
Make a new visitor for the provided target
.
Auto Trait Implementations
impl<D, V> RefUnwindSafe for Delimited<D, V> where
D: RefUnwindSafe,
V: RefUnwindSafe,
impl<D, V> UnwindSafe for Delimited<D, V> where
D: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more