pub enum AxisNamesError {
Parse(ParseError),
NoStatTable,
NoNameTable,
}Expand description
Error type returned from axis_names.
Variants§
Parse(ParseError)
An error occurred reading or parsing data.
NoStatTable
Font is missing STAT table.
NoNameTable
Font is missing name table.
Trait Implementations§
Source§impl Debug for AxisNamesError
impl Debug for AxisNamesError
Source§impl Display for AxisNamesError
impl Display for AxisNamesError
Source§impl Error for AxisNamesError
impl Error for AxisNamesError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Source§impl From<ParseError> for AxisNamesError
impl From<ParseError> for AxisNamesError
Source§fn from(err: ParseError) -> AxisNamesError
fn from(err: ParseError) -> AxisNamesError
Converts to this type from the input type.
Source§impl PartialEq for AxisNamesError
impl PartialEq for AxisNamesError
impl Eq for AxisNamesError
impl StructuralPartialEq for AxisNamesError
Auto Trait Implementations§
impl Freeze for AxisNamesError
impl RefUnwindSafe for AxisNamesError
impl Send for AxisNamesError
impl Sync for AxisNamesError
impl Unpin for AxisNamesError
impl UnwindSafe for AxisNamesError
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more