pub struct XzDecoder<R> { /* private fields */ }
futures-io
and xz
only.Expand description
A xz decoder, or decompressor
This structure implements an AsyncRead
interface and will
read compressed data from an underlying stream and emit a stream of uncompressed data.
Implementations§
source§impl<R: AsyncBufRead> XzDecoder<R>
impl<R: AsyncBufRead> XzDecoder<R>
sourcepub fn new(read: R) -> XzDecoder<R>
pub fn new(read: R) -> XzDecoder<R>
Creates a new decoder which will read compressed data from the given stream and emit a uncompressed stream.
sourcepub fn with_mem_limit(read: R, memlimit: u64) -> Self
pub fn with_mem_limit(read: R, memlimit: u64) -> Self
Creates a new decoder with the specified limit of memory.
§Errors
An IO error may be returned during decoding if the specified limit is too small.
source§impl<R> XzDecoder<R>
impl<R> XzDecoder<R>
sourcepub fn multiple_members(&mut self, enabled: bool)
pub fn multiple_members(&mut self, enabled: bool)
Configure multi-member/frame decoding, if enabled this will reset the decoder state when reaching the end of a compressed member/frame and expect either EOF or another compressed member/frame to follow it in the stream.
sourcepub fn get_ref(&self) -> &R
pub fn get_ref(&self) -> &R
Acquires a reference to the underlying reader that this decoder is wrapping.
sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
Acquires a mutable reference to the underlying reader that this decoder is wrapping.
Note that care must be taken to avoid tampering with the state of the reader which may otherwise confuse this decoder.
sourcepub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut R>
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut R>
Acquires a pinned mutable reference to the underlying reader that this decoder is wrapping.
Note that care must be taken to avoid tampering with the state of the reader which may otherwise confuse this decoder.
sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Consumes this decoder returning the underlying reader.
Note that this may discard internal state of this decoder, so care should be taken to avoid losing resources when this is called.
Trait Implementations§
source§impl<R: AsyncBufRead> AsyncRead for XzDecoder<R>
impl<R: AsyncBufRead> AsyncRead for XzDecoder<R>
source§impl<R: AsyncWrite> AsyncWrite for XzDecoder<R>
impl<R: AsyncWrite> AsyncWrite for XzDecoder<R>
source§fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>
buf
into the object. Read more