Struct deflate::write::DeflateEncoder
source · [−]pub struct DeflateEncoder<W: Write> { /* private fields */ }
Expand description
A DEFLATE encoder/compressor.
A struct implementing a Write
interface that takes arbitrary data and compresses it to
the provided writer using DEFLATE compression.
Examples
use std::io::Write;
use deflate::Compression;
use deflate::write::DeflateEncoder;
let data = b"This is some test data";
let mut encoder = DeflateEncoder::new(Vec::new(), Compression::Default);
encoder.write_all(data)?;
let compressed_data = encoder.finish()?;
Implementations
sourceimpl<W: Write> DeflateEncoder<W>
impl<W: Write> DeflateEncoder<W>
sourcepub fn new<O: Into<CompressionOptions>>(
writer: W,
options: O
) -> DeflateEncoder<W>ⓘNotable traits for DeflateEncoder<W>impl<W: Write> Write for DeflateEncoder<W>
pub fn new<O: Into<CompressionOptions>>(
writer: W,
options: O
) -> DeflateEncoder<W>ⓘNotable traits for DeflateEncoder<W>impl<W: Write> Write for DeflateEncoder<W>
Creates a new encoder using the provided compression options.
Trait Implementations
sourceimpl<W: Write> Drop for DeflateEncoder<W>
impl<W: Write> Drop for DeflateEncoder<W>
sourceimpl<W: Write> Write for DeflateEncoder<W>
impl<W: Write> Write for DeflateEncoder<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
🔬 This is a nightly-only experimental API. (
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>
🔬 This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl<W> RefUnwindSafe for DeflateEncoder<W> where
W: RefUnwindSafe,
impl<W> Send for DeflateEncoder<W> where
W: Send,
impl<W> Sync for DeflateEncoder<W> where
W: Sync,
impl<W> Unpin for DeflateEncoder<W> where
W: Unpin,
impl<W> UnwindSafe for DeflateEncoder<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