[][src]Struct inflate::InflateWriter

pub struct InflateWriter<W: Write> { /* fields omitted */ }

A DEFLATE decoder.

A struct implementing the std::io::Write trait that decompresses DEFLATE encoded data into the given writer w.

Example

use inflate::InflateWriter;
use std::io::Write;

let encoded = [243, 72, 205, 201, 201, 215, 81, 40, 207, 47, 202, 73, 1, 0];
let mut decoder = InflateWriter::new(Vec::new());
decoder.write(&encoded).unwrap();
let decoded = decoder.finish().unwrap();
println!("{}", std::str::from_utf8(&decoded).unwrap()); // prints "Hello, world"

Methods

impl<W: Write> InflateWriter<W>[src]

Important traits for InflateWriter<W>
pub fn new(w: W) -> InflateWriter<W>[src]

Important traits for InflateWriter<W>
pub fn from_zlib(w: W) -> InflateWriter<W>[src]

pub fn finish(self) -> Result<W>[src]

Trait Implementations

impl<W: Write> Write for InflateWriter<W>[src]

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0
[src]

Attempts to write an entire buffer into this writer. Read more

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

fn by_ref(&mut self) -> &mut Self
1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more

Auto Trait Implementations

impl<W> Send for InflateWriter<W> where
    W: Send

impl<W> Sync for InflateWriter<W> where
    W: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.