Struct inflate::DeflateDecoder
source · [−]pub struct DeflateDecoder<R> { /* private fields */ }Expand description
A DEFLATE decoder/decompressor.
This structure implements a Read interface and takes a stream of compressed data that
implements the Read trait as input,
provoding the decompressed data when read from.
Example
use std::io::Read;
use inflate::DeflateDecoder;
const TEST_STRING: &'static str = "Hello, world";
let encoded = vec![243, 72, 205, 201, 201, 215, 81, 40, 207, 47, 202, 73, 1, 0];
let mut decoder = DeflateDecoder::new(&encoded[..]);
let mut output = Vec::new();
let status = decoder.read_to_end(&mut output);
assert_eq!(String::from_utf8(output).unwrap(), TEST_STRING);Implementations
sourceimpl<R: Read> DeflateDecoder<R>
impl<R: Read> DeflateDecoder<R>
sourcepub fn new(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
pub fn new(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
Create a new Deflatedecoderbuf to read from a raw deflate stream.
sourcepub fn from_zlib(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
pub fn from_zlib(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
Create a new DeflateDecoderbuf that reads from a zlib wrapped deflate stream.
sourcepub fn from_zlib_no_checksum(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
pub fn from_zlib_no_checksum(reader: R) -> DeflateDecoder<R>ⓘNotable traits for DeflateDecoder<R>impl<R: Read> Read for DeflateDecoder<R>
Create a new DeflateDecoderbuf that reads from a zlib wrapped deflate stream.
without calculating and validating the checksum.
sourcepub fn reset(&mut self, r: R) -> R
pub fn reset(&mut self, r: R) -> R
Resets the decompressor, and replaces the current inner BufRead instance by r.
without doing any extra reallocations.
Note that this function doesn’t ensure that all data has been output.
sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
Returns a mutable reference to the underlying reader.
Note that mutation of the reader may cause surprising results if the decoder is going to keep being used.
sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Returns the total number of bytes output from this decoder.
sourceimpl<R> DeflateDecoder<R>
impl<R> DeflateDecoder<R>
sourcepub fn reset_data(&mut self)
pub fn reset_data(&mut self)
Resets the decoder, but continue to read from the same reader.
Note that this function doesn’t ensure that all data has been output.
sourcepub fn current_checksum(&self) -> u32
pub fn current_checksum(&self) -> u32
Returns the calculated checksum value of the currently decoded data.
Will return 0 for cases where the checksum is not validated.
Trait Implementations
sourceimpl<R: Read> Read for DeflateDecoder<R>
impl<R: Read> Read for DeflateDecoder<R>
sourcefn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
1.36.0 · sourcefn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like read, except that it reads into a slice of buffers. Read more
sourcefn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)Determines if this Reader has an efficient read_vectored
implementation. Read more
1.0.0 · sourcefn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · sourcefn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · sourcefn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill buf. Read more
sourcefn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Pull some bytes from this source into the specified buffer. Read more
sourcefn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Read the exact number of bytes required to fill buf. Read more
1.0.0 · sourcefn by_ref(&mut self) -> &mut Self
fn by_ref(&mut self) -> &mut Self
Creates a “by reference” adaptor for this instance of Read. Read more
Auto Trait Implementations
impl<R> RefUnwindSafe for DeflateDecoder<R> where
R: RefUnwindSafe,
impl<R> Send for DeflateDecoder<R> where
R: Send,
impl<R> Sync for DeflateDecoder<R> where
R: Sync,
impl<R> Unpin for DeflateDecoder<R> where
R: Unpin,
impl<R> UnwindSafe for DeflateDecoder<R> where
R: 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