Trait libflate::lz77::Sink[][src]

pub trait Sink {
    pub fn consume(&mut self, code: Code);
}

The Sink trait represents a consumer of LZ77 encoded data.

Required methods

pub fn consume(&mut self, code: Code)[src]

Consumes a LZ77 encoded Code.

Loading content...

Implementations on Foreign Types

impl<T> Sink for Vec<T, Global> where
    T: From<Code>, 
[src]

impl<'a, T> Sink for &'a mut T where
    T: Sink
[src]

Loading content...

Implementors

Loading content...