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>
impl<D, V, T> MakeVisitor<T> for Delimited<D, V>
Source§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> Freeze for Delimited<D, V>
impl<D, V> RefUnwindSafe for Delimited<D, V>where
D: RefUnwindSafe,
V: RefUnwindSafe,
impl<D, V> Send for Delimited<D, V>
impl<D, V> Sync for Delimited<D, V>
impl<D, V> Unpin for Delimited<D, V>
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