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