Error Set ParseIntError [src]

Errors

InvalidCharacter

The input was empty or contained an invalid character.

Overflow

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, }