Trait procfs::FromBufReadSI

source ·
pub trait FromBufReadSI: Sized {
    // Required method
    fn from_buf_read<R>(
        r: R,
        system_info: &(dyn SystemInfoInterface + 'static)
    ) -> Result<Self, ProcError>
       where R: BufRead;
}
Expand description

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

Required Methods§

source

fn from_buf_read<R>( r: R, system_info: &(dyn SystemInfoInterface + 'static) ) -> Result<Self, ProcError>where R: BufRead,

Object Safety§

This trait is not object safe.

Implementors§