pub struct ZlibEncoder<R> { /* private fields */ }
futures-io
and zlib
only.Expand description
A zlib encoder, or compressor.
This structure implements an AsyncRead
interface and will
read uncompressed data from an underlying stream and emit a stream of compressed data.
Implementations§
source§impl<R: AsyncBufRead> ZlibEncoder<R>
impl<R: AsyncBufRead> ZlibEncoder<R>
sourcepub fn new(inner: R) -> Self
pub fn new(inner: R) -> Self
Creates a new encoder which will read uncompressed data from the given stream and emit a compressed stream.
sourcepub fn with_quality(inner: R, level: Level) -> Self
pub fn with_quality(inner: R, level: Level) -> Self
Creates a new encoder which will read uncompressed data from the given stream and emit a compressed stream.
sourcepub fn total_in(&self) -> u64
pub fn total_in(&self) -> u64
Returns the total number of input bytes which have been processed by this compression object.
sourcepub fn total_out(&self) -> u64
pub fn total_out(&self) -> u64
Returns the total number of output bytes which have been produced by this compression object.
sourcepub fn get_ref(&self) -> &R
pub fn get_ref(&self) -> &R
Acquires a reference to the underlying reader that this encoder 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 encoder is wrapping.
Note that care must be taken to avoid tampering with the state of the reader which may otherwise confuse this encoder.
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 encoder is wrapping.
Note that care must be taken to avoid tampering with the state of the reader which may otherwise confuse this encoder.
sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Consumes this encoder returning the underlying reader.
Note that this may discard internal state of this encoder, so care should be taken to avoid losing resources when this is called.
Trait Implementations§
source§impl<R: AsyncBufRead> AsyncRead for ZlibEncoder<R>
impl<R: AsyncBufRead> AsyncRead for ZlibEncoder<R>
source§impl<R: AsyncWrite> AsyncWrite for ZlibEncoder<R>
impl<R: AsyncWrite> AsyncWrite for ZlibEncoder<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