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

    fn sample_type(&self) -> SampleType;
    fn create_level_writer(&'slf self, size: Vec2<usize>) -> Self::Writer;
}
Expand description

Enable an image with this single level sample grid to be written to a file. Only contained within Levels.

Required Associated Types

The type of the temporary writer for this single level of samples

Required Methods

Generate the file meta data regarding the number type of these samples

Create a temporary writer for this single level of samples

Implementors