Struct utf8_bufread::ChunkIter[][src]

pub struct ChunkIter<'r, R, F, A, T> where
    R: ?Sized,
    F: FnOnce(A) -> T, 
{ /* fields omitted */ }

Trait Implementations

impl<R, F, T> Iterator for ChunkIter<'_, R, F, &str, T> where
    R: BufRead,
    F: FnMut(&str) -> T, 
[src]

type Item = T

The type of the elements being iterated over.

impl<R, F, T> Iterator for ChunkIter<'_, R, F, Result<&str>, T> where
    R: BufRead,
    F: FnMut(Result<&str>) -> T, 
[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

impl<'r, R, F, A, T> !RefUnwindSafe for ChunkIter<'r, R, F, A, T>

impl<'r, R, F, A, T> !Send for ChunkIter<'r, R, F, A, T>

impl<'r, R, F, A, T> !Sync for ChunkIter<'r, R, F, A, T>

impl<'r, R: ?Sized, F, A, T> Unpin for ChunkIter<'r, R, F, A, T> where
    F: Unpin

impl<'r, R, F, A, T> !UnwindSafe for ChunkIter<'r, R, F, A, T>

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.