[][src]Struct itertools::structs::FormatWith

pub struct FormatWith<'a, I, F> { /* fields omitted */ }

Format all iterator elements lazily, separated by sep.

The format value can only be formatted once, after that the iterator is exhausted.

See .format_with() for more information.

Trait Implementations

impl<'a, I: Clone, F: Clone> Clone for FormatWith<'a, I, F>[src]

impl<'a, I, F> Display for FormatWith<'a, I, F> where
    I: Iterator,
    F: FnMut(I::Item, &mut dyn FnMut(&dyn Display) -> Result) -> Result
[src]

Auto Trait Implementations

impl<'a, I, F> !RefUnwindSafe for FormatWith<'a, I, F>

impl<'a, I, F> Send for FormatWith<'a, I, F> where
    F: Send,
    I: Send

impl<'a, I, F> !Sync for FormatWith<'a, I, F>

impl<'a, I, F> Unpin for FormatWith<'a, I, F> where
    F: Unpin,
    I: Unpin

impl<'a, I, F> UnwindSafe for FormatWith<'a, I, F> where
    F: UnwindSafe,
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.