Enum num_bigint::ParseBigIntError [] [src]

pub enum ParseBigIntError {
    ParseInt(ParseIntError),
    Other,
}

Variants

ParseInt(ParseIntError)Other

Trait Implementations

impl PartialEq for ParseBigIntError
[src]

fn eq(&self, __arg_0: &ParseBigIntError) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &ParseBigIntError) -> bool

This method tests for !=.

impl Debug for ParseBigIntError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for ParseBigIntError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for ParseBigIntError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

The lower-level cause of this error, if any. Read more

impl From<ParseIntError> for ParseBigIntError
[src]

fn from(err: ParseIntError) -> ParseBigIntError

Performs the conversion.