Trait singlefile::manager::mode::Reading
source · pub trait Reading<T, Format>: FileMode<Format>where
Format: FileFormat<T>,{
fn read(&self, file: &File) -> Result<T, Error<Format::FormatError>>;
}Expand description
Extends FileMode, adding the ability to read from files.