pub enum ErrorReason {
ParseFloat(ParseFloatError),
ParseInt(ParseIntError),
IllegalNesting,
Missing,
}
Variants§
Trait Implementations§
Source§impl Debug for ErrorReason
impl Debug for ErrorReason
Source§impl From<ParseFloatError> for ErrorReason
impl From<ParseFloatError> for ErrorReason
Source§fn from(err: ParseFloatError) -> ErrorReason
fn from(err: ParseFloatError) -> ErrorReason
Converts to this type from the input type.
Source§impl From<ParseIntError> for ErrorReason
impl From<ParseIntError> for ErrorReason
Source§fn from(err: ParseIntError) -> ErrorReason
fn from(err: ParseIntError) -> ErrorReason
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ErrorReason
impl RefUnwindSafe for ErrorReason
impl Send for ErrorReason
impl Sync for ErrorReason
impl Unpin for ErrorReason
impl UnwindSafe for ErrorReason
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