pub trait ChannelsWriter: Sync {
    fn extract_uncompressed_block(
        &self,
        header: &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, containing all channel data, to be stored in the file

Implementors