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.

Required Methods

Read a value from the file.

Implementors