Struct ZlibDecoder
struct ZlibDecoder<R> { ... }
A ZLIB decoder, or decompressor.
This structure implements a Read interface. When read from, it reads
compressed data from the underlying Read and provides the uncompressed data.
After reading a single member of the ZLIB data this reader will return
Ok(0) even if there are more bytes available in the underlying reader.
ZlibDecoder may have read additional bytes past the end of the ZLIB data.
If you need the following bytes, wrap the Reader in a std::io::BufReader
and use bufread::ZlibDecoder instead.
Examples
use *;
use io;
# use Compression;
# use ZlibEncoder;
use ZlibDecoder;
#
#
// Uncompresses a Zlib Encoded vector of bytes and returns a string or error
// Here &[u8] implements Read
Implementations
impl<R> ZlibDecoder<R>
fn reset(self: &mut Self, r: R) -> RResets the state of this decoder entirely, swapping out the input stream for another.
This will reset the internal state of this decoder and replace the input stream with the one provided, returning the previous input stream. Future data read from this decoder will be the decompressed version of
r's data.Note that there may be currently buffered data when this function is called, and in that case the buffered data is discarded.
fn get_ref(self: &Self) -> &RAcquires a reference to the underlying stream
fn get_mut(self: &mut Self) -> &mut RAcquires a mutable reference to the underlying stream
Note that mutation of the stream may result in surprising results if this decoder is continued to be used.
fn into_inner(self: Self) -> RConsumes this decoder, returning the underlying reader.
Note that there may be buffered bytes which are not re-acquired as part of this transition. It's recommended to only call this function after EOF has been reached.
fn total_in(self: &Self) -> u64Returns the number of bytes that the decompressor has consumed.
Note that this will likely be smaller than what the decompressor actually read from the underlying stream due to buffering.
fn total_out(self: &Self) -> u64Returns the number of bytes that the decompressor has produced.
impl<R: Read> ZlibDecoder<R>
fn new(r: R) -> ZlibDecoder<R>Creates a new decoder which will decompress data read from the given stream.
fn new_with_buf(r: R, buf: Vec<u8>) -> ZlibDecoder<R>Creates a new decoder which will decompress data read from the given stream
r, usingbufas backing to speed up reading.Note that the specified buffer will only be used up to its current length. The buffer's capacity will also not grow over time.
fn new_with_decompress(r: R, decompression: Decompress) -> ZlibDecoder<R>Creates a new decoder which will decompress data read from the given stream
r, along withdecompressionsettings.fn new_with_decompress_and_buf(r: R, buf: Vec<u8>, decompression: Decompress) -> ZlibDecoder<R>Creates a new decoder which will decompress data read from the given stream
r, usingbufas backing to speed up reading, along withdecompressionsettings to configure decoder.Note that the specified buffer will only be used up to its current length. The buffer's capacity will also not grow over time.
impl<R> Freeze for ZlibDecoder<R>
impl<R> RefUnwindSafe for ZlibDecoder<R>
impl<R> Send for ZlibDecoder<R>
impl<R> Sync for ZlibDecoder<R>
impl<R> Unpin for ZlibDecoder<R>
impl<R> UnsafeUnpin for ZlibDecoder<R>
impl<R> UnwindSafe for ZlibDecoder<R>
impl<R: $crate::fmt::Debug> Debug for ZlibDecoder<R>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<R: Read + Write> Write for ZlibDecoder<R>
fn write(self: &mut Self, buf: &[u8]) -> Result<usize>fn flush(self: &mut Self) -> Result<()>
impl<R: Read> Read for ZlibDecoder<R>
fn read(self: &mut Self, into: &mut [u8]) -> Result<usize>
impl<T> Any for ZlibDecoder<R>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ZlibDecoder<R>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ZlibDecoder<R>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ZlibDecoder<R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for ZlibDecoder<R>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ZlibDecoder<R>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ZlibDecoder<R>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>