pub struct XzDecoder<W> { /* private fields */ }xz only.Expand description
A xz decoder, or decompressor.
This structure implements an AsyncWrite interface and will
take in compressed data and write it uncompressed to an underlying stream.
Implementations§
Source§impl<W: AsyncWrite> XzDecoder<W>
impl<W: AsyncWrite> XzDecoder<W>
Sourcepub fn new(read: W) -> XzDecoder<W>
Available on crate feature futures-io only.
pub fn new(read: W) -> XzDecoder<W>
futures-io only.Creates a new decoder which will take in compressed data and write it uncompressedd to the given stream.
Sourcepub fn get_ref(&self) -> &W
Available on crate feature futures-io only.
pub fn get_ref(&self) -> &W
futures-io only.Acquires a reference to the underlying reader that this decoder is wrapping.
Sourcepub fn get_mut(&mut self) -> &mut W
Available on crate feature futures-io only.
pub fn get_mut(&mut self) -> &mut W
futures-io only.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 W>
Available on crate feature futures-io only.
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>
futures-io only.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) -> W
Available on crate feature futures-io only.
pub fn into_inner(self) -> W
futures-io only.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<W: AsyncWrite> AsyncWrite for XzDecoder<W>
Available on crate feature futures-io only.
impl<W: AsyncWrite> AsyncWrite for XzDecoder<W>
futures-io only.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 moreSource§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
impl<'__pin, W> Unpin for XzDecoder<W>where
PinnedFieldsOf<__Origin<'__pin, W>>: Unpin,
futures-io only.