pub struct ParseIntegerError { /* private fields */ }Expand description
Error that can occur when trying to parse an integer.
Implementations§
Source§impl ParseIntegerError
impl ParseIntegerError
Sourcepub fn kind(&self) -> ParseIntegerErrorKind
pub fn kind(&self) -> ParseIntegerErrorKind
The specific kind of error that occured.
Trait Implementations§
Source§impl Clone for ParseIntegerError
impl Clone for ParseIntegerError
Source§fn clone(&self) -> ParseIntegerError
fn clone(&self) -> ParseIntegerError
Returns a duplicate 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 ParseIntegerError
impl Debug for ParseIntegerError
Source§impl Display for ParseIntegerError
impl Display for ParseIntegerError
Source§impl Error for ParseIntegerError
impl Error for ParseIntegerError
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 PartialEq for ParseIntegerError
impl PartialEq for ParseIntegerError
impl Eq for ParseIntegerError
impl StructuralPartialEq for ParseIntegerError
Auto Trait Implementations§
impl Freeze for ParseIntegerError
impl RefUnwindSafe for ParseIntegerError
impl Send for ParseIntegerError
impl Sync for ParseIntegerError
impl Unpin for ParseIntegerError
impl UnwindSafe for ParseIntegerError
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