pub struct XzEncoder<W: Write> { /* private fields */ }Expand description
A compression stream which will have uncompressed data written to it and will write compressed data to an output stream. XzEncoder will no longer perform the finalization automatically in the next miner release, so you need to call XzEncoder::finish manually. If you want to automate the finalization process, please use XzEncoder::auto_finish.
Implementations§
Source§impl<W: Write> XzEncoder<W>
 
impl<W: Write> XzEncoder<W>
Sourcepub fn new(obj: W, level: u32) -> XzEncoder<W> ⓘ
 
pub fn new(obj: W, level: u32) -> XzEncoder<W> ⓘ
Create a new compression stream which will compress at the given level to write compress output to the give output stream.
Sourcepub fn new_stream(obj: W, stream: Stream) -> XzEncoder<W> ⓘ
 
pub fn new_stream(obj: W, stream: Stream) -> XzEncoder<W> ⓘ
Create a new encoder which will use the specified Stream to encode
(compress) data into the provided obj.
Sourcepub fn get_mut(&mut self) -> &mut W
 
pub fn get_mut(&mut self) -> &mut W
Acquires a mutable reference to the underlying writer.
Note that mutating the output/input state of the stream may corrupt this object, so care must be taken when using this method.
Sourcepub fn try_finish(&mut self) -> Result<()>
 
pub fn try_finish(&mut self) -> Result<()>
Attempt to finish this output stream, writing out final chunks of data.
Note that this function can only be used once data has finished being
written to the output stream. After this function is called then further
calls to write may result in a panic.
§Panics
Attempts to write data to this stream may result in a panic after this function is called.
Sourcepub fn finish(self) -> Result<W>
 
pub fn finish(self) -> Result<W>
Consumes this encoder, finishing the compression stream.
This will finish the underlying data stream and then return the contained writer if the finish succeeded.
Note that this function may not be suitable to call in a situation where
the underlying stream is an asynchronous I/O stream. To finish a stream
the try_finish (or shutdown) method should be used instead. To
re-acquire ownership of a stream it is safe to call this method after
try_finish or shutdown has returned Ok.
Sourcepub fn total_out(&self) -> u64
 
pub fn total_out(&self) -> u64
Returns the number of bytes produced by the compressor
Note that, due to buffering, this only bears any relation to
total_in() after a call to flush().  At that point,
total_out() / total_in() is the compression ratio.
Sourcepub fn total_in(&self) -> u64
 
pub fn total_in(&self) -> u64
Returns the number of bytes consumed by the compressor (e.g. the number of bytes written to this stream.)
Sourcepub fn auto_finish(self) -> AutoFinishXzEncoder<W> ⓘ
 
pub fn auto_finish(self) -> AutoFinishXzEncoder<W> ⓘ
Convert to AutoFinishXzEncoder that impl Drop trait. AutoFinishXzEncoder automatically calls XzDecoder::try_finish method when exiting the scope.
Trait Implementations§
Source§impl<W: Read + Write> Read for XzEncoder<W>
 
impl<W: Read + Write> Read for XzEncoder<W>
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
 
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
1.36.0 · Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
 
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
 
fn is_read_vectored(&self) -> bool
can_vector)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
 
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
 
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
 
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
 
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
 
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)cursor. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
    Self: Sized,
 
fn by_ref(&mut self) -> &mut Selfwhere
    Self: Sized,
Read. Read moreSource§impl<W: Write> Write for XzEncoder<W>
 
impl<W: Write> Write for XzEncoder<W>
Source§fn write(&mut self, data: &[u8]) -> Result<usize>
 
fn write(&mut self, data: &[u8]) -> Result<usize>
Source§fn flush(&mut self) -> Result<()>
 
fn flush(&mut self) -> Result<()>
Source§fn is_write_vectored(&self) -> bool
 
fn is_write_vectored(&self) -> bool
can_vector)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
 
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
 
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)