pub struct Reader<R> { /* private fields */ }
Expand description

Decode the meta data from a byte source, keeping the source ready for further reading. Continue decoding the remaining bytes by calling filtered_chunks or all_chunks.

Implementations

Start the reading process. Immediately decodes the meta data into an internal field. Access it viameta_data().

The decoded exr meta data from the file.

The decoded exr meta data from the file.

Obtain the meta data ownership.

Prepare to read all the chunks from the file. Does not decode the chunks now, but returns a decoder. Reading all chunks reduces seeking the file, but some chunks might be read without being used.

Prepare to read some the chunks from the file. Does not decode the chunks now, but returns a decoder. Reading only some chunks may seeking the file, potentially skipping many bytes.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.