Trait gzp::SyncWriter[][src]

pub trait SyncWriter<W: Write>: Send {
    type OutputWriter: Write;
    fn sync_writer(
        writer: W,
        compression_level: Compression
    ) -> Self::OutputWriter; }
Expand description

Create a synchronous writer wrapping the input W type.

Associated Types

Required methods

Implementors