Trait precis_tools::UCDLineParser[][src]

pub trait UCDLineParser<U>: CodeGen {
    fn process_entry(&mut self, line: &U) -> Result<(), Error>;
}
Expand description

Generic trait used by parsers to generate code.

Required methods

fn process_entry(&mut self, line: &U) -> Result<(), Error>

Process an entry in the UCD file.

Argument:

line - Represents a line in the UCD file.

Implementors