Trait repng::filter::Filter [] [src]

pub trait Filter {
    fn apply<W: Write>(
        &mut self,
        sink: W,
        prior: &[u8],
        line: &[u8]
    ) -> Result<()>; }

A filter selection algorithm.

Required Methods

Apply a filter and write the result to the sink.

Implementors