Error Set ParseIntError [src]
Errors
The input was empty or contained an invalid character
The result cannot fit in the type specified
Source
pub const ParseIntError = error{
/// The result cannot fit in the type specified
Overflow,
/// The input was empty or contained an invalid character
InvalidCharacter,
}