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§

source§

impl<D, V> Delimited<D, V>

source

pub fn new(delimiter: D, inner: V) -> Delimited<D, V>

Returns a new MakeVisitor implementation that wraps inner so that it will format each visited field separated by the provided delimiter.

Trait Implementations§

source§

impl<D, V> Clone for Delimited<D, V>
where D: Clone, V: Clone,

source§

fn clone(&self) -> Delimited<D, V>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<D, V> Debug for Delimited<D, V>
where D: Debug, V: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<D, V, T> MakeVisitor<T> for Delimited<D, V>
where D: AsRef<str> + Clone, V: MakeVisitor<T>, <V as MakeVisitor<T>>::Visitor: VisitFmt,

§

type Visitor = VisitDelimited<D, <V as MakeVisitor<T>>::Visitor>

The visitor type produced by this MakeVisitor.
source§

fn make_visitor( &self, target: T ) -> <Delimited<D, V> as MakeVisitor<T>>::Visitor

Make a new visitor for the provided target.

Auto Trait Implementations§

§

impl<D, V> Freeze for Delimited<D, V>
where D: Freeze, V: Freeze,

§

impl<D, V> RefUnwindSafe for Delimited<D, V>

§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, M> MakeExt<T> for M
where M: MakeVisitor<T> + Sealed<MakeExtMarker<T>>,

source§

fn debug_alt(self) -> Alt<Self>

Wraps self so that any fmt::Debug fields are recorded using the alternate formatter ({:#?}).
source§

fn display_messages(self) -> Messages<Self>

Wraps self so that any string fields named “message” are recorded using fmt::Display.
source§

fn delimited<D>(self, delimiter: D) -> Delimited<D, Self>
where D: AsRef<str> + Clone, Self::Visitor: VisitFmt,

Wraps self so that when fields are formatted to a writer, they are separated by the provided delimiter.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more