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§
Sourcefn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".