pub enum Label {
Unicode(Vec<u32>),
Codepoint(Vec<u16>),
Tag(String),
Anonymous,
}Expand description
Glyph labeling system supporting Unicode, legacy codepoints, and custom tags.
YAFF supports multiple labeling schemes to accommodate different font encodings and use cases, from modern Unicode fonts to legacy 8-bit character sets.
Variants§
Trait Implementations§
impl Eq for Label
impl StructuralPartialEq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnwindSafe for Label
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