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
.Auto Trait Implementations§
impl<D, V> RefUnwindSafe for Delimited<D, V>where D: RefUnwindSafe, V: RefUnwindSafe,
impl<D, V> Send for Delimited<D, V>where D: Send, V: Send,
impl<D, V> Sync for Delimited<D, V>where D: Sync, V: Sync,
impl<D, V> Unpin for Delimited<D, V>where D: Unpin, V: Unpin,
impl<D, V> UnwindSafe for Delimited<D, V>where D: UnwindSafe, V: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more