pub struct DeflateEncoder<W> { /* private fields */ }deflate only.Expand description
A deflate encoder, or compressor.
This structure implements an AsyncWrite interface and will
take in uncompressed data and write it compressed to an underlying stream.
Implementations§
Source§impl<W: AsyncWrite> DeflateEncoder<W>
impl<W: AsyncWrite> DeflateEncoder<W>
Sourcepub fn new(inner: W) -> Self
Available on crate feature tokio only.
pub fn new(inner: W) -> Self
tokio only.Creates a new encoder which will take in uncompressed data and write it compressed to the given stream.
Sourcepub fn with_quality(inner: W, level: Level) -> Self
Available on crate feature tokio only.
pub fn with_quality(inner: W, level: Level) -> Self
tokio only.Creates a new encoder which will take in uncompressed data and write it compressed to the given stream.
Sourcepub fn get_ref(&self) -> &W
Available on crate feature tokio only.
pub fn get_ref(&self) -> &W
tokio only.Acquires a reference to the underlying writer that this encoder is wrapping.
Sourcepub fn get_mut(&mut self) -> &mut W
Available on crate feature tokio only.
pub fn get_mut(&mut self) -> &mut W
tokio only.Acquires a mutable reference to the underlying writer that this encoder is wrapping.
Note that care must be taken to avoid tampering with the state of the writer which may otherwise confuse this encoder.
Sourcepub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>
Available on crate feature tokio only.
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>
tokio only.Acquires a pinned mutable reference to the underlying writer that this encoder is wrapping.
Note that care must be taken to avoid tampering with the state of the writer which may otherwise confuse this encoder.
Sourcepub fn into_inner(self) -> W
Available on crate feature tokio only.
pub fn into_inner(self) -> W
tokio only.Consumes this encoder returning the underlying writer.
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<W: AsyncWrite> AsyncWrite for DeflateEncoder<W>
Available on crate feature tokio only.
impl<W: AsyncWrite> AsyncWrite for DeflateEncoder<W>
tokio only.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 moreSource§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Source§fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Source§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>],
) -> Poll<Result<usize, Error>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>
poll_write, except that it writes from a slice of buffers. Read moreSource§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
poll_write_vectored
implementation. Read moreSource§impl<W: Debug> Debug for DeflateEncoder<W>
Available on crate feature tokio only.
impl<W: Debug> Debug for DeflateEncoder<W>
tokio only.impl<'__pin, W> Unpin for DeflateEncoder<W>where
PinnedFieldsOf<__Origin<'__pin, W>>: Unpin,
tokio only.