pub struct ParseIntError {
pub kind: IntErrorKind,
}Expand description
An error which can be returned when parsing an integer.
Fields§
§kind: IntErrorKindImplementations§
Source§impl ParseIntError
impl ParseIntError
Sourcepub const fn kind(&self) -> &IntErrorKind
pub const fn kind(&self) -> &IntErrorKind
Outputs the detailed cause of parsing an integer failing.
Trait Implementations§
Source§impl Debug for ParseIntError
impl Debug for ParseIntError
Source§impl Display for ParseIntError
impl Display for ParseIntError
Source§impl From<ParseIntError> for ParseIntError
impl From<ParseIntError> for ParseIntError
Source§fn from(other: ParseIntError) -> ParseIntError
fn from(other: ParseIntError) -> ParseIntError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseIntError
impl RefUnwindSafe for ParseIntError
impl Send for ParseIntError
impl Sync for ParseIntError
impl Unpin for ParseIntError
impl UnwindSafe for ParseIntError
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