Skip to main content

ReaderBuild

Trait ReaderBuild 

Source
pub trait ReaderBuild<F> {
    type New;

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

Required Associated Types§

Required Methods§

Source

fn then(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> ReaderBuild<F> for Reader<PS, S, FS>
where (PhantomData<PS>, FS): ReaderBuildHelper<S, Simple<F>>,

Source§

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