Struct MultiGzDecoder
pub struct MultiGzDecoder<W: Write> { /* private fields */ }
A gzip streaming decoder that decodes a gzip file with multiple members.
This structure exposes a Write interface that will consume compressed data and
write uncompressed data to the underlying writer.
A gzip file consists of a series of members concatenated one after another.
MultiGzDecoder decodes all members of a file and writes them to the
underlying writer one after another.
To handle members separately, see [GzDecoder] or read more in the introduction.
Implementations
impl<W: Write> MultiGzDecoder<W>
fn new(w: W) -> MultiGzDecoder<W>Creates a new decoder which will write uncompressed data to the stream. If the gzip stream contains multiple members all will be decoded.
fn header(&self) -> Option<&GzHeader>Returns the header associated with the current member.
fn get_ref(&self) -> &WAcquires a reference to the underlying writer.
fn get_mut(&mut self) -> &mut WAcquires 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.
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
writemay result in a panic.Panics
Attempts to write data to this stream may result in a panic after this function is called.
Errors
This function will perform I/O to finish the stream, returning any errors which happen.
fn finish(self) -> Result<W>Consumes this decoder, flushing the output stream.
This will flush the underlying data stream and then return the contained writer if the flush 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(orshutdown) method should be used instead. To re-acquire ownership of a stream it is safe to call this method aftertry_finishorshutdownhas returnedOk.Errors
This function will perform I/O to complete this stream, and any I/O errors which occur will be returned from this function.
Trait Implementations
impl<W: Debug + Write> Debug for MultiGzDecoder<W>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<W: Write> Write for MultiGzDecoder<W>
fn write(&mut self, buf: &[u8]) -> Result<usize>fn flush(&mut self) -> Result<()>
Auto Trait Implementations
impl<W> !UnwindSafe for MultiGzDecoder<W>
impl<W> Freeze for MultiGzDecoder<W>
where
GzDecoder<W>: Freeze,
impl<W> RefUnwindSafe for MultiGzDecoder<W>
where
GzDecoder<W>: RefUnwindSafe,
impl<W> Send for MultiGzDecoder<W>
where
GzDecoder<W>: Send,
impl<W> Sync for MultiGzDecoder<W>
where
GzDecoder<W>: Sync,
impl<W> Unpin for MultiGzDecoder<W>
where
GzDecoder<W>: Unpin,
impl<W> UnsafeUnpin for MultiGzDecoder<W>
where
GzDecoder<W>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for MultiGzDecoder<W>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for MultiGzDecoder<W>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for MultiGzDecoder<W>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for MultiGzDecoder<W>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for MultiGzDecoder<W>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for MultiGzDecoder<W>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for MultiGzDecoder<W>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>