Enum read_fonts::tables::postscript::Error
source · pub enum Error {
InvalidIndexOffsetSize(u8),
ZeroOffset,
Read(ReadError),
}Expand description
Errors that are specific to PostScript processing.
Variants§
InvalidIndexOffsetSize(u8)
The off_size field in an INDEX contained an invalid value.
ZeroOffset
An INDEX contained a zero offset.
Read(ReadError)
Underlying parsing error.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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