pub struct BrotliDecoder<W> { /* private fields */ }
futures-io
and brotli
only.Expand description
A brotli 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> BrotliDecoder<W>
impl<W> BrotliDecoder<W>
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.
source§impl<W: AsyncWrite> BrotliDecoder<W>
impl<W: AsyncWrite> BrotliDecoder<W>
sourcepub fn new(read: W) -> BrotliDecoder<W>
pub fn new(read: W) -> BrotliDecoder<W>
Creates a new decoder which will take in compressed data and write it uncompressed to the given stream.
Trait Implementations§
source§impl<W: AsyncBufRead> AsyncBufRead for BrotliDecoder<W>
impl<W: AsyncBufRead> AsyncBufRead for BrotliDecoder<W>
source§impl<W: AsyncRead> AsyncRead for BrotliDecoder<W>
impl<W: AsyncRead> AsyncRead for BrotliDecoder<W>
source§impl<W: AsyncWrite> AsyncWrite for BrotliDecoder<W>
impl<W: AsyncWrite> AsyncWrite for BrotliDecoder<W>
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