pub trait UCDLineParser<U>: CodeGen { fn process_entry(&mut self, line: &U) -> Result<(), Error>; }
Generic trait used by parsers to generate code.
Process an entry in the UCD file.
line - Represents a line in the UCD file.
line