[][src]Trait rcut::ProcessLineByChar

pub trait ProcessLineByChar {
    fn process(&self, line: &str, ranged_pairs: &Vec<(usize, usize)>) -> Vec<u8>;
}

Required methods

fn process(&self, line: &str, ranged_pairs: &Vec<(usize, usize)>) -> Vec<u8>

Loading content...

Implementors

impl ProcessLineByChar for AsciiCharLineProcessor[src]

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

Extract parts of an ASCII encoded line

impl ProcessLineByChar for Utf8CharLineProcessor[src]

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

Extract parts of a UTF-8 encoded line

Loading content...