Enum num_bigint::ParseBigIntError [] [src]

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

Variants

Trait Implementations

impl Debug for ParseBigIntError
[src]

Formats the value using the given formatter.

impl PartialEq for ParseBigIntError
[src]

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

This method tests for !=.

impl Display for ParseBigIntError
[src]

Formats the value using the given formatter. Read more

impl Error for ParseBigIntError
[src]

A short description of the error. Read more

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

impl From<ParseIntError> for ParseBigIntError
[src]

Performs the conversion.