Enum stellar_client::resources::ParseAmountError[][src]

pub enum ParseAmountError {
    ExceedsDecimalLength,
    IntError(ParseIntError),
}

Wrapping ParseAmountError around ParseIntError since ParseIntError's interior is private and thus not instantiable.

Variants

An error describing the case where the amount contains too many digits of precision to parse correctly

A wrapper around ParseIntError type

Trait Implementations

impl Debug for ParseAmountError
[src]

Formats the value using the given formatter. Read more

impl From<ParseIntError> for ParseAmountError
[src]

Performs the conversion.

Auto Trait Implementations