Enum fea_rs::compile::error::FontGlyphOrderError
source · pub enum FontGlyphOrderError {
ReadError(ReadError),
MissingNames,
}Expand description
An error that occurs when extracting a glyph order from a font file.
Variants§
Trait Implementations§
source§impl Clone for FontGlyphOrderError
impl Clone for FontGlyphOrderError
source§fn clone(&self) -> FontGlyphOrderError
fn clone(&self) -> FontGlyphOrderError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FontGlyphOrderError
impl Debug for FontGlyphOrderError
source§impl Display for FontGlyphOrderError
impl Display for FontGlyphOrderError
source§impl Error for FontGlyphOrderError
impl Error for FontGlyphOrderError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl RefUnwindSafe for FontGlyphOrderError
impl Send for FontGlyphOrderError
impl Sync for FontGlyphOrderError
impl Unpin for FontGlyphOrderError
impl UnwindSafe for FontGlyphOrderError
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
source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere U: FromObjRef<T>,
source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.