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

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

The Sink trait represents a consumer of LZ77 encoded data.

Required Methods

Consumes a LZ77 encoded Code.

Implementations on Foreign Types

impl Sink for Vec<Symbol>
[src]

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

Implementors