Enum bigdecimal::ParseBigDecimalError [] [src]

pub enum ParseBigDecimalError {
    ParseDecimal(ParseFloatError),
    ParseInt(ParseIntError),
    ParseBigInt(ParseBigIntError),
    Empty,
    Other(String),
}

Variants

Trait Implementations

impl Debug for ParseBigDecimalError
[src]

Formats the value using the given formatter.

impl PartialEq for ParseBigDecimalError
[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 ParseBigDecimalError
[src]

Formats the value using the given formatter. Read more

impl Error for ParseBigDecimalError
[src]

A short description of the error. Read more

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

impl From<ParseFloatError> for ParseBigDecimalError
[src]

Performs the conversion.

impl From<ParseIntError> for ParseBigDecimalError
[src]

Performs the conversion.

impl From<ParseBigIntError> for ParseBigDecimalError
[src]

Performs the conversion.