pub enum CFFError {
Show 15 variants
NoGlyph,
ReadOutOfBounds,
ZeroBBox,
InvalidOperator,
UnsupportedOperator,
MissingEndChar,
DataAfterEndChar,
NestingLimitReached,
ArgumentsStackLimitReached,
InvalidArgumentsStackLength,
BboxOverflow,
MissingMoveTo,
InvalidSubroutineIndex,
NoLocalSubroutines,
InvalidSeacCode,
}
Expand description
A list of errors that can occur during a CFF table parsing.
Variants§
NoGlyph
ReadOutOfBounds
ZeroBBox
InvalidOperator
UnsupportedOperator
MissingEndChar
DataAfterEndChar
NestingLimitReached
ArgumentsStackLimitReached
InvalidArgumentsStackLength
BboxOverflow
MissingMoveTo
InvalidSubroutineIndex
NoLocalSubroutines
InvalidSeacCode
Trait Implementations§
impl Copy for CFFError
impl StructuralPartialEq for CFFError
Auto Trait Implementations§
impl Freeze for CFFError
impl RefUnwindSafe for CFFError
impl Send for CFFError
impl Sync for CFFError
impl Unpin for CFFError
impl UnwindSafe for CFFError
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