Trait input::Readable

source ·
pub trait Readable {
    type Output;

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

Required Associated Types§

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: FromStr> Readable for T
where T::Err: Debug,