pub trait FromBufReadSI: Sized {
    // Required method
    fn from_buf_read<R: BufRead>(
        r: R,
        system_info: &SystemInfo
    ) -> ProcResult<Self>;
}
Expand description

Types which can be parsed from a BufRead implementation and system info.

Required Methods§

source

fn from_buf_read<R: BufRead>(r: R, system_info: &SystemInfo) -> ProcResult<Self>

Object Safety§

This trait is not object safe.

Implementors§