Skip to main content

XzDecoder

pub struct XzDecoder<W> { /* private fields */ }
Available on crate feature 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>

Source

pub fn new(read: W) -> XzDecoder<W>

Available on crate feature futures-io only.

Creates a new decoder which will take in compressed data and write it uncompressedd to the given stream.

Source

pub fn get_ref(&self) -> &W

Available on crate feature futures-io only.

Acquires a reference to the underlying reader that this decoder is wrapping.

Source

pub fn get_mut(&mut self) -> &mut W

Available on crate feature 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.

Source

pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>

Available on crate feature 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.

Source

pub fn into_inner(self) -> W

Available on crate feature 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.
Source§

fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>

Attempt to write bytes from buf into the object. Read more
Source§

fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more
Source§

fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>

Attempt to close the object. Read more
Source§

fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>

Attempt to write bytes from bufs into the object using vectored IO operations. Read more
Source§

impl<W: Debug> Debug for XzDecoder<W>

Available on crate feature futures-io only.
Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'__pin, W> Unpin for XzDecoder<W>
where PinnedFieldsOf<__Origin<'__pin, W>>: Unpin,

Available on crate feature futures-io only.

Auto Trait Implementations§

§

impl<W> Freeze for XzDecoder<W>
where W: Freeze,

§

impl<W> RefUnwindSafe for XzDecoder<W>
where W: RefUnwindSafe,

§

impl<W> Send for XzDecoder<W>
where W: Send,

§

impl<W> Sync for XzDecoder<W>
where W: Sync,

§

impl<W> UnsafeUnpin for XzDecoder<W>
where W: UnsafeUnpin,

§

impl<W> UnwindSafe for XzDecoder<W>
where W: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.