pub struct NameAlias {
pub codepoint: Codepoint,
pub alias: String,
pub label: NameAliasLabel,
}
Expand description
A single row in the NameAliases.txt
file.
Note that there are multiple rows for some codepoint. Each row provides a new alias.
Fields§
§codepoint: Codepoint
The codepoint corresponding to this row.
alias: String
The alias.
label: NameAliasLabel
The label of this alias.
Trait Implementations§
source§impl PartialEq for NameAlias
impl PartialEq for NameAlias
source§impl UcdFile for NameAlias
impl UcdFile for NameAlias
source§impl UcdFileByCodepoint for NameAlias
impl UcdFileByCodepoint for NameAlias
source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for NameAlias
impl StructuralEq for NameAlias
impl StructuralPartialEq for NameAlias
Auto Trait Implementations§
impl RefUnwindSafe for NameAlias
impl Send for NameAlias
impl Sync for NameAlias
impl Unpin for NameAlias
impl UnwindSafe for NameAlias
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more