pub enum NumberParseError {
IntError(ParseIntError),
FloatError(ParseFloatError),
}Variants§
IntError(ParseIntError)
FloatError(ParseFloatError)
Trait Implementations§
source§impl Debug for NumberParseError
impl Debug for NumberParseError
source§impl From<ParseFloatError> for NumberParseError
impl From<ParseFloatError> for NumberParseError
source§fn from(err: ParseFloatError) -> Self
fn from(err: ParseFloatError) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for NumberParseError
impl From<ParseIntError> for NumberParseError
source§fn from(err: ParseIntError) -> Self
fn from(err: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NumberParseError
impl RefUnwindSafe for NumberParseError
impl Send for NumberParseError
impl Sync for NumberParseError
impl Unpin for NumberParseError
impl UnwindSafe for NumberParseError
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