Struct GzEncoder
pub struct GzEncoder<R> { /* private fields */ }
A gzip streaming encoder
This structure implements a Read interface. When read from, it reads
uncompressed data from the underlying BufRead and provides the compressed data.
Examples
use *;
use io;
use Compression;
use GzEncoder;
use File;
use BufReader;
// Opens sample file, compresses the contents and returns a Vector or error
// File wrapped in a BufReader implements BufRead
Implementations
impl<R> GzEncoder<R>
fn get_ref(&self) -> &RAcquires a reference to the underlying reader.
fn get_mut(&mut self) -> &mut RAcquires a mutable reference to the underlying reader.
Note that mutation of the reader may result in surprising results if this encoder is continued to be used.
fn into_inner(self) -> RReturns the underlying stream, consuming this encoder
impl<R: BufRead> GzEncoder<R>
fn new(r: R, level: Compression) -> GzEncoder<R>Creates a new encoder which will use the given compression level.
The encoder is not configured specially for the emitted header. For header configuration, see the
GzBuildertype.The data read from the stream
rwill be compressed and available through the returned reader.
Trait Implementations
impl<R: BufRead + Write> Write for GzEncoder<R>
fn write(&mut self, buf: &[u8]) -> Result<usize>fn flush(&mut self) -> Result<()>
impl<R: BufRead> Read for GzEncoder<R>
fn read(&mut self, into: &mut [u8]) -> Result<usize>
impl<R: Debug> Debug for GzEncoder<R>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl<R> !UnwindSafe for GzEncoder<R>
impl<R> Freeze for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: Freeze,
impl<R> RefUnwindSafe for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: RefUnwindSafe,
impl<R> Send for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: Send,
impl<R> Sync for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: Sync,
impl<R> Unpin for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: Unpin,
impl<R> UnsafeUnpin for GzEncoder<R>
where
DeflateEncoder<CrcReader<R>>: UnsafeUnpin,
Blanket Implementations
impl<T> Any for GzEncoder<R>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for GzEncoder<R>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for GzEncoder<R>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for GzEncoder<R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for GzEncoder<R>
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 GzEncoder<R>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for GzEncoder<R>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>