pub trait FileReader: StreamReader<File> {
// Provided method
fn open<P: AsRef<Path>>(
path: P,
network_name: impl Into<String>,
) -> Result<Self::File, E2sError> { ... }
}
Expand description
FileReader
provides reading era file operations for era files
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.