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

Generic trait used by parsers to generate code.

Required Methods§

source

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§