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

Types which can be parsed from a BufRead implementation.

Required Methods§

source

fn from_buf_read<R: BufRead>(r: R) -> ProcResult<Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FromBufRead for Vec<MountEntry>

source§

impl FromBufRead for Vec<PartitionEntry>

Implementors§