Skip to main content

ReaderBuildIter

Trait ReaderBuildIter 

Source
pub trait ReaderBuildIter<F> {
    type New;

    // Required method
    fn then_iter(self, func: F) -> Self::New;
}

Required Associated Types§

Required Methods§

Source

fn then_iter(self, func: F) -> Self::New

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<PS, FS, F, S> ReaderBuildIter<F> for Reader<PS, S, FS>
where (PhantomData<PS>, FS): ReaderBuildHelper<S, Iter<F>>,

Source§

type New = Reader<PS, S, <(PhantomData<PS>, FS) as ReaderBuildHelper<S, Iter<F>>>::New>