pub trait WritableLayers<'slf> {
    type Writer: LayersWriter;

    fn infer_headers(&self, image_attributes: &ImageAttributes) -> Headers;
    fn create_writer(&'slf self, headers: &[Header]) -> Self::Writer;
}
Expand description

Enables an image containing this list of layers 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 layers

Create a temporary writer for this list of layers

Implementors