[][src]Trait rcut::LineProcessorT

pub trait LineProcessorT<C> {
    fn process(&self, line: &str, context: &C) -> Vec<u8>;
}

Required methods

fn process(&self, line: &str, context: &C) -> Vec<u8>

Loading content...

Implementors

impl<C: CharContextT> LineProcessorT<C> for ByteLineProcessor[src]

fn process(&self, line: &str, context: &C) -> Vec<u8>[src]

Extract parts of an ASCII encoded line

impl<C: CharContextT> LineProcessorT<C> for CharUtf8LineProcessor[src]

fn process(&self, line: &str, context: &C) -> Vec<u8>[src]

Extract parts of a UTF-8 encoded line

impl<C: FieldContextT> LineProcessorT<C> for FieldUtf8LineProcessor[src]

fn process(&self, line: &str, context: &C) -> Vec<u8>[src]

Extract parts of an ASCII encoded line

Loading content...