pub enum FontError {
InvalidFace,
MissingGlyph {
ch: char,
},
}Expand description
Font loader or metric lookup failure.
Variants§
InvalidFace
Embedded or supplied bytes are not a usable OpenType face.
MissingGlyph
Character has no glyph in this face.
Trait Implementations§
impl Eq for FontError
impl StructuralPartialEq for FontError
Auto Trait Implementations§
impl Freeze for FontError
impl RefUnwindSafe for FontError
impl Send for FontError
impl Sync for FontError
impl Unpin for FontError
impl UnsafeUnpin for FontError
impl UnwindSafe for FontError
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