[][src]Struct zstd::stream::write::Decoder

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

A decoder that decompress and forward data to another writer.

Methods

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

pub fn new(writer: W) -> Result<Self>[src]

Creates a new decoder.

pub fn with_dictionary(writer: W, dictionary: &[u8]) -> Result<Self>[src]

Creates a new decoder, using an existing dictionary.

(Provides better compression ratio for small files, but requires the dictionary to be present during decompression.)

pub fn with_prepared_dictionary(
    writer: W,
    dictionary: &DecoderDictionary
) -> Result<Self>
[src]

Creates a new decoder, using an existing prepared DecoderDictionary.

(Provides better compression ratio for small files, but requires the dictionary to be present during decompression.)

pub fn get_ref(&self) -> &W[src]

Acquires a reference to the underlying writer.

pub fn get_mut(&mut self) -> &mut W[src]

Acquires a mutable reference to the underlying writer.

Note that mutation of the writer may result in surprising results if this decoder is continued to be used.

pub fn into_inner(self) -> W[src]

Returns the inner Write.

pub fn recommended_input_size() -> usize[src]

Return a recommendation for the size of data to write at once.

Trait Implementations

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

Auto Trait Implementations

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

impl<W> !Sync for Decoder<W>

impl<W> Unpin for Decoder<W> where
    W: Unpin

impl<W> UnwindSafe for Decoder<W> where
    W: UnwindSafe

impl<W> RefUnwindSafe for Decoder<W> where
    W: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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