Struct fmt_extra::Seperated [] [src]

pub struct Seperated<'a, D: Display, X: Display, I: IntoIterator<Item = X> + 'a> { /* fields omitted */ }

Display a given iterator over display-ables using by printing each display-able 1 display-able seperator.

NOTE: for now, the seperator is also emitted after the last display-able. This should be expected to change.

Methods

impl<'a, D: Display, X: Display, I: IntoIterator<Item = X> + 'a> Seperated<'a, D, X, I>
[src]

Trait Implementations

impl<'a, D: Display, X: Display, I: IntoIterator<Item = X>> Display for Seperated<'a, D, X, I>
[src]

Formats the value using the given formatter. Read more