pub trait IntoReader {
    type Output: Value;

    fn into_reader(self) -> EventualReader<Self::Output>;
}

Required Associated Types

Required Methods

Implementors