Struct flate2::bufread::ZlibEncoder
source · pub struct ZlibEncoder<R> { /* private fields */ }
Expand description
A ZLIB encoder, or compressor.
This structure implements a Read
interface. When read from, it reads
uncompressed data from the underlying BufRead
and provides the compressed data.
§Examples
use std::io::prelude::*;
use flate2::Compression;
use flate2::bufread::ZlibEncoder;
use std::fs::File;
use std::io::BufReader;
// Use a buffered file to compress contents into a Vec<u8>
let f = File::open("examples/hello_world.txt")?;
let b = BufReader::new(f);
let mut z = ZlibEncoder::new(b, Compression::fast());
let mut buffer = Vec::new();
z.read_to_end(&mut buffer)?;
Implementations§
source§impl<R: BufRead> ZlibEncoder<R>
impl<R: BufRead> ZlibEncoder<R>
sourcepub fn new(r: R, level: Compression) -> ZlibEncoder<R> ⓘ
pub fn new(r: R, level: Compression) -> ZlibEncoder<R> ⓘ
Creates a new encoder which will read uncompressed data from the given stream and emit the compressed stream.
sourcepub fn new_with_compress(r: R, compression: Compress) -> ZlibEncoder<R> ⓘ
pub fn new_with_compress(r: R, compression: Compress) -> ZlibEncoder<R> ⓘ
Creates a new encoder with the given compression
settings which will
read uncompressed data from the given stream r
and emit the compressed stream.
source§impl<R> ZlibEncoder<R>
impl<R> ZlibEncoder<R>
sourcepub fn reset(&mut self, r: R) -> R
pub fn reset(&mut self, r: R) -> R
Resets the state of this encoder entirely, swapping out the input stream for another.
This function will reset the internal state of this encoder and replace
the input stream with the one provided, returning the previous input
stream. Future data read from this encoder will be the compressed
version of r
’s data.
sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
Acquires a mutable reference to the underlying stream
Note that mutation of the stream may result in surprising results if this encoder is continued to be used.
sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Consumes this encoder, returning the underlying reader.
Trait Implementations§
source§impl<R: Debug> Debug for ZlibEncoder<R>
impl<R: Debug> Debug for ZlibEncoder<R>
source§impl<R: BufRead> Read for ZlibEncoder<R>
impl<R: BufRead> Read for ZlibEncoder<R>
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
1.36.0 · source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read
, except that it reads into a slice of buffers. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector
)1.0.0 · source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf
. Read more1.0.0 · source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf
. Read more1.6.0 · source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf
. Read moresource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)cursor
. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read moresource§impl<R: BufRead + Write> Write for ZlibEncoder<R>
impl<R: BufRead + Write> Write for ZlibEncoder<R>
source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)