Struct DeflateDecoder
pub struct DeflateDecoder<R> { /* private fields */ }
A DEFLATE 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 DEFLATE data this reader will return
Ok(0) even if there are more bytes available in the underlying reader.
DeflateDecoder may have read additional bytes past the end of the DEFLATE data.
If you need the following bytes, wrap the Reader in a std::io::BufReader
and use bufread::DeflateDecoder instead.
Examples
use *;
use io;
# use Compression;
# use DeflateEncoder;
use DeflateDecoder;
#
// Uncompresses a Deflate Encoded vector of bytes and returns a string or error
// Here &[u8] implements Read
Implementations
impl<R> DeflateDecoder<R>
fn reset(&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) -> &RAcquires a reference to the underlying stream
fn get_mut(&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) -> 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) -> 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) -> u64Returns the number of bytes that the decompressor has produced.
impl<R: Read> DeflateDecoder<R>
fn new(r: R) -> DeflateDecoder<R>Creates a new decoder which will decompress data read from the given stream.
fn new_with_buf(r: R, buf: Vec<u8>) -> DeflateDecoder<R>Same as
new, but the intermediate buffer for data is specified.Note that the capacity of the intermediate buffer is never increased, and it is recommended for it to be large.
Trait Implementations
impl<R: Debug> Debug for DeflateDecoder<R>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<R: Read> Read for DeflateDecoder<R>
fn read(&mut self, into: &mut [u8]) -> Result<usize>
impl<W: Read + Write> Write for DeflateDecoder<W>
fn write(&mut self, buf: &[u8]) -> Result<usize>fn flush(&mut self) -> Result<()>
Auto Trait Implementations
impl<R> !UnwindSafe for DeflateDecoder<R>
impl<R> Freeze for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: Freeze,
impl<R> RefUnwindSafe for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: RefUnwindSafe,
impl<R> Send for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: Send,
impl<R> Sync for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: Sync,
impl<R> Unpin for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: Unpin,
impl<R> UnsafeUnpin for DeflateDecoder<R>
where
DeflateDecoder<BufReader<R>>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for DeflateDecoder<R>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for DeflateDecoder<R>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for DeflateDecoder<R>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for DeflateDecoder<R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for DeflateDecoder<R>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for DeflateDecoder<R>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for DeflateDecoder<R>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>