pub trait UcdFileByCodepoint: UcdFile {
    // Required method
    fn codepoints(&self) -> CodepointIter ;
}
Expand description

Describes a single UCD file where every record in the file is associated with one or more codepoints.

Required Methods§

source

fn codepoints(&self) -> CodepointIter

Returns the codepoints associated with this record.

Implementors§