Struct deflate::write::ZlibEncoder
source · [−]pub struct ZlibEncoder<W: Write> { /* private fields */ }
Expand description
A Zlib encoder/compressor.
A struct implementing a Write
interface that takes arbitrary data and compresses it to
the provided writer using DEFLATE compression with Zlib headers and trailers.
Examples
use std::io::Write;
use deflate::Compression;
use deflate::write::ZlibEncoder;
let data = b"This is some test data";
let mut encoder = ZlibEncoder::new(Vec::new(), Compression::Default);
encoder.write_all(data)?;
let compressed_data = encoder.finish()?;
Implementations
sourceimpl<W: Write> ZlibEncoder<W>
impl<W: Write> ZlibEncoder<W>
sourcepub fn new<O: Into<CompressionOptions>>(writer: W, options: O) -> ZlibEncoder<W>ⓘNotable traits for ZlibEncoder<W>impl<W: Write> Write for ZlibEncoder<W>
pub fn new<O: Into<CompressionOptions>>(writer: W, options: O) -> ZlibEncoder<W>ⓘNotable traits for ZlibEncoder<W>impl<W: Write> Write for ZlibEncoder<W>
Create a new ZlibEncoder
using the provided compression options.
sourcepub fn finish(self) -> Result<W>
pub fn finish(self) -> Result<W>
Encode all pending data to the contained writer, consume this ZlibEncoder
,
and return the contained writer if writing succeeds.
Trait Implementations
sourceimpl<W: Write> Drop for ZlibEncoder<W>
impl<W: Write> Drop for ZlibEncoder<W>
sourceimpl<W: Write> Write for ZlibEncoder<W>
impl<W: Write> Write for ZlibEncoder<W>
sourcefn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush the encoder.
This will flush the encoder, emulating the Sync flush method from Zlib. This essentially finishes the current block, and sends an additional empty stored block to the writer.
sourcefn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)Determines if this Write
r has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl<W> RefUnwindSafe for ZlibEncoder<W> where
W: RefUnwindSafe,
impl<W> Send for ZlibEncoder<W> where
W: Send,
impl<W> Sync for ZlibEncoder<W> where
W: Sync,
impl<W> Unpin for ZlibEncoder<W> where
W: Unpin,
impl<W> UnwindSafe for ZlibEncoder<W> where
W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more