pub trait WritableChannels<'slf> {
    type Writer: ChannelsWriter;

    fn infer_channel_list(&self) -> ChannelList;
    fn infer_level_modes(&self) -> (LevelMode, RoundingMode);
    fn create_writer(&'slf self, header: &Header) -> Self::Writer;
}
Expand description

Enables an image containing this list of channels to be written to a file.

Required Associated Types

The type of temporary writer

Required Methods

Generate the file meta data for this list of channel

Generate the file meta data of whether and how resolution levels should be stored in the file

Create a temporary writer for this list of channels

Implementors