Struct tracing_subscriber::field::delimited::Delimited [−][src]
pub struct Delimited<D, V> { /* fields omitted */ }
A MakeVisitor
wrapper that wraps a visitor that writes formatted output so
that a delimiter is inserted between writing formatted field values.
Implementations
impl<D, V> Delimited<D, V>
[src]
impl<D, V> Delimited<D, V>
[src]pub fn new(delimiter: D, inner: V) -> Self
[src]
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,
[src]
impl<D, V, T> MakeVisitor<T> for Delimited<D, V> where
D: AsRef<str> + Clone,
V: MakeVisitor<T>,
V::Visitor: VisitFmt,
[src]type Visitor = VisitDelimited<D, V::Visitor>
The visitor type produced by this MakeVisitor
.
fn make_visitor(&self, target: T) -> Self::Visitor
[src]
Auto Trait Implementations
impl<D, V> RefUnwindSafe for Delimited<D, V> where
D: RefUnwindSafe,
V: RefUnwindSafe,
D: RefUnwindSafe,
V: RefUnwindSafe,
impl<D, V> Send for Delimited<D, V> where
D: Send,
V: Send,
D: Send,
V: Send,
impl<D, V> Sync for Delimited<D, V> where
D: Sync,
V: Sync,
D: Sync,
V: Sync,
impl<D, V> Unpin for Delimited<D, V> where
D: Unpin,
V: Unpin,
D: Unpin,
V: Unpin,
impl<D, V> UnwindSafe for Delimited<D, V> where
D: UnwindSafe,
V: UnwindSafe,
D: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, M> MakeExt<T> for M where
M: MakeVisitor<T> + Sealed<MakeExtMarker<T>>,
[src]
impl<T, M> MakeExt<T> for M where
M: MakeVisitor<T> + Sealed<MakeExtMarker<T>>,
[src]