Enum ttf_parser::FaceParsingError [−][src]
pub enum FaceParsingError {
MalformedFont,
UnknownMagic,
FaceIndexOutOfBounds,
NoHeadTable,
NoHheaTable,
NoMaxpTable,
}
Expand description
A list of font face parsing errors.
Variants
MalformedFont
An attempt to read out of bounds detected.
Should occur only on malformed fonts.
UnknownMagic
Face data must start with 0x00010000
, 0x74727565
, 0x4F54544F
or 0x74746366
.
FaceIndexOutOfBounds
The face index is larger than the number of faces in the font.
NoHeadTable
The head
table is missing or malformed.
NoHheaTable
The hhea
table is missing or malformed.
NoMaxpTable
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