Struct async_compression::futures::write::GzipDecoder
source · [−]pub struct GzipDecoder<W> { /* private fields */ }
futures-io
and gzip
only.Expand description
A gzip decoder, or decompressor.
This structure implements an AsyncWrite
interface and will
take in compressed data and write it uncompressed to an underlying stream.
Implementations
sourceimpl<W: AsyncWrite> GzipDecoder<W>
impl<W: AsyncWrite> GzipDecoder<W>
sourcepub fn new(read: W) -> GzipDecoder<W>
pub fn new(read: W) -> GzipDecoder<W>
Creates a new decoder which will take in compressed data and write it uncompressedd to the given stream.
sourcepub fn get_ref(&self) -> &W
pub fn get_ref(&self) -> &W
Acquires a reference to the underlying reader that this decoder is wrapping.
sourcepub fn get_mut(&mut self) -> &mut W
pub fn get_mut(&mut self) -> &mut W
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>
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>
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
pub fn into_inner(self) -> W
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
sourceimpl<W: AsyncWrite> AsyncWrite for GzipDecoder<W>
impl<W: AsyncWrite> AsyncWrite for GzipDecoder<W>
sourcefn 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>>
Attempt to write bytes from buf
into the object. Read more
sourcefn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
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
sourceimpl<W: Debug> Debug for GzipDecoder<W>
impl<W: Debug> Debug for GzipDecoder<W>
impl<'__pin, W> Unpin for GzipDecoder<W> where
__Origin<'__pin, W>: Unpin,
Auto Trait Implementations
impl<W> RefUnwindSafe for GzipDecoder<W> where
W: RefUnwindSafe,
impl<W> Send for GzipDecoder<W> where
W: Send,
impl<W> Sync for GzipDecoder<W> where
W: Sync,
impl<W> UnwindSafe for GzipDecoder<W> where
W: 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