pub trait LayersWriter: Sync {
    fn extract_uncompressed_block(
        &self,
        headers: &[Header],
        block: BlockIndex
    ) -> Vec<u8>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

A temporary writer for a list of channels

Required Methods

Deliver a block of pixels from a single layer to be stored in the file

Implementors