[][src]Struct lz4::Decoder

pub struct Decoder<R> { /* fields omitted */ }

Methods

impl<R: Read> Decoder<R>[src]

pub fn new(r: R) -> Result<Decoder<R>>[src]

Creates a new encoder which will have its output written to the given output stream. The output stream can be re-acquired by calling finish()

pub fn reader(&self) -> &R[src]

Immutable reader reference.

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

Trait Implementations

impl<R: Read> Read for Decoder<R>[src]

Auto Trait Implementations

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

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

impl<R> !Sync for Decoder<R>

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

impl<R> RefUnwindSafe for Decoder<R> where
    R: 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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