pub trait UcdCodeGen: CodeGen {
    // Required method
    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§

source

fn parse_unicode_file(&mut self, ucd_path: &Path) -> Result<(), Error>

Parses a UCD file.

Arguments:

ucd_path - Path where UCD file is stored.

Implementors§