Enum ttf_parser::FaceParsingError [−][src]
pub enum FaceParsingError { MalformedFont, UnknownMagic, FaceIndexOutOfBounds, NoHeadTable, NoHheaTable, NoMaxpTable, }
Expand description
A list of font face parsing errors.
Variants
An attempt to read out of bounds detected.
Should occur only on malformed fonts.
Face data must start with 0x00010000
, 0x74727565
, 0x4F54544F
or 0x74746366
.
The face index is larger than the number of faces in the font.
The head
table is missing or malformed.
The hhea
table is missing or malformed.
The maxp
table is missing or malformed.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FaceParsingError
impl Send for FaceParsingError
impl Sync for FaceParsingError
impl Unpin for FaceParsingError
impl UnwindSafe for FaceParsingError
Blanket Implementations
Mutably borrows from an owned value. Read more