pub trait FromReadSI: Sized {
// Required method
fn from_read<R>(
r: R,
system_info: &(dyn SystemInfoInterface + 'static),
) -> Result<Self, ProcError>
where R: Read;
// Provided method
fn from_file<P>(
path: P,
system_info: &(dyn SystemInfoInterface + 'static),
) -> Result<Self, ProcError>
where P: AsRef<Path> { ... }
}Expand description
Types which can be parsed from a Read implementation and system info.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".