Trait display_utils::IteratorExt[][src]

pub trait IteratorExt: Iterator + Sized + Clone where
    Self::Item: Display
{ fn display_concat(self) -> Concat<Self> { ... }
fn display_join<J>(self, joiner: J) -> Join<Self, J>
    where
        J: Display
, { ... }
fn display_join_format<J, C>(
        self,
        joiner: J,
        callback: C
    ) -> JoinFormat<Self, J, C>
    where
        J: Display,
        C: Fn(Self::Item, &mut Formatter<'_>) -> Result
, { ... } }

Extension trait providing convenient access to the base functions in the crate root.

Provided methods

fn display_concat(self) -> Concat<Self>[src]

Alias for crate::concat()

fn display_join<J>(self, joiner: J) -> Join<Self, J> where
    J: Display
[src]

Alias for crate::join

fn display_join_format<J, C>(
    self,
    joiner: J,
    callback: C
) -> JoinFormat<Self, J, C> where
    J: Display,
    C: Fn(Self::Item, &mut Formatter<'_>) -> Result
[src]

Loading content...

Implementors

impl<I: Iterator + Clone> IteratorExt for I where
    I::Item: Display
[src]

Loading content...