Trait nekolib_doc::io::input::Readable

source ·
pub trait Readable {
    type Output;

    // Required method
    fn read<R, S>(source: &mut S) -> Self::Output
       where R: BufRead,
             S: Source<R>;
}

Required Associated Types§

Required Methods§

source

fn read<R, S>(source: &mut S) -> Self::Output
where R: BufRead, S: Source<R>,

Object Safety§

This trait is not object safe.

Implementors§