Trait precis_tools::UcdCodeGen[][src]

pub trait UcdCodeGen: CodeGen {
    fn parse_unicode_file(&mut self, ucd_path: &Path) -> Result<(), Error>;
}
Expand description

Trait implemented by all elements that are able to parse UCD files.

Required methods

Parses a UCD file.

Arguments:

ucd_path - Path where UCD file is stored.

Implementors