Enum num_bigint::ParseBigIntError
[−]
[src]
pub enum ParseBigIntError {
ParseInt(ParseIntError),
Other,
}Variants
ParseInt(ParseIntError)Other
Trait Implementations
impl Debug for ParseBigIntError[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for ParseBigIntError[src]
fn eq(&self, __arg_0: &ParseBigIntError) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ParseBigIntError) -> bool[src]
This method tests for !=.
impl Display for ParseBigIntError[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Error for ParseBigIntError[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
The lower-level cause of this error, if any. Read more
impl From<ParseIntError> for ParseBigIntError[src]
fn from(err: ParseIntError) -> ParseBigIntError[src]
Performs the conversion.