pub struct XzEncoder<W> { /* private fields */ }
futures-io
and xz
only.Expand description
A xz encoder, or compressor.
This structure implements an AsyncWrite
interface and will
take in uncompressed data and write it compressed to an underlying stream.
Implementations
sourceimpl<W: AsyncWrite> XzEncoder<W>
impl<W: AsyncWrite> XzEncoder<W>
sourcepub fn new(inner: W) -> Self
pub fn new(inner: W) -> Self
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
pub fn with_quality(inner: W, level: Level) -> Self
Creates a new encoder which will take in uncompressed data and write it compressed to the given stream.
sourcepub fn get_ref(&self) -> &W
pub fn get_ref(&self) -> &W
Acquires a reference to the underlying writer that this encoder 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 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>
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut W>
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
pub fn into_inner(self) -> W
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
sourceimpl<W: AsyncWrite> AsyncWrite for XzEncoder<W>
impl<W: AsyncWrite> AsyncWrite for XzEncoder<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
impl<'__pin, W> Unpin for XzEncoder<W> where
__Origin<'__pin, W>: Unpin,
Auto Trait Implementations
impl<W> RefUnwindSafe for XzEncoder<W> where
W: RefUnwindSafe,
impl<W> Send for XzEncoder<W> where
W: Send,
impl<W> Sync for XzEncoder<W> where
W: Sync,
impl<W> UnwindSafe for XzEncoder<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