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

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

A decoder that decompress and forward data to another writer.

Implementations

impl<W: Write> Decoder<'static, 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.)

impl<'a, W: Write> Decoder<'a, W>[src]

pub fn with_prepared_dictionary<'b>(
    writer: W,
    dictionary: &DecoderDictionary<'b>
) -> Result<Self> where
    'b: 'a, 
[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 include_magicbytes(&mut self, include_magicbytes: bool) -> Result<()>[src]

Enables or disabled expecting the 4-byte magic header

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<'a, W> RefUnwindSafe for Decoder<'a, W> where
    W: RefUnwindSafe

impl<'a, W> Send for Decoder<'a, W> where
    W: Send

impl<'a, W> !Sync for Decoder<'a, W>

impl<'a, W> Unpin for Decoder<'a, W> where
    W: Unpin

impl<'a, W> UnwindSafe for Decoder<'a, W> where
    W: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.