pub struct GlyphKey {
pub font_stack: String,
pub codepoint: char,
}Expand description
A requested glyph in a font stack.
Fields§
§font_stack: StringFont stack name used for the glyph.
codepoint: charUnicode scalar requested from the font stack.
Trait Implementations§
Source§impl Ord for GlyphKey
impl Ord for GlyphKey
Source§impl PartialOrd for GlyphKey
impl PartialOrd for GlyphKey
impl Eq for GlyphKey
impl StructuralPartialEq for GlyphKey
Auto Trait Implementations§
impl Freeze for GlyphKey
impl RefUnwindSafe for GlyphKey
impl Send for GlyphKey
impl Sync for GlyphKey
impl Unpin for GlyphKey
impl UnsafeUnpin for GlyphKey
impl UnwindSafe for GlyphKey
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