pub struct ParseIntegerError { /* private fields */ }
Expand description
An error that can occur when parsing an integer.
- No digits
- Invalid digit
- Overflow
- Underflow
Trait Implementations§
source§impl Clone for ParseIntegerError
impl Clone for ParseIntegerError
source§fn clone(&self) -> ParseIntegerError
fn clone(&self) -> ParseIntegerError
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 ParseIntegerError
impl Debug for ParseIntegerError
source§impl Display for ParseIntegerError
impl Display for ParseIntegerError
source§impl Error for ParseIntegerError
impl Error for ParseIntegerError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)