pub trait WritableSamples<'slf> {
    type Writer: SamplesWriter;

    fn sample_type(&self) -> SampleType;
    fn infer_level_modes(&self) -> (LevelMode, RoundingMode);
    fn create_samples_writer(&'slf self, header: &Header) -> Self::Writer;
}
Expand description

Enable an image with this sample grid to be written to a file. Also can contain multiple resolution levels. Usually contained within Channels.

Required Associated Types

The type of the temporary writer for this sample storage

Required Methods

Generate the file meta data regarding the number type of this storage

Generate the file meta data regarding resolution levels

Create a temporary writer for this sample storage

Implementors