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
ExceedsDecimalLengthAn error describing the case where the amount contains too many digits of precision to parse correctly
IntError(ParseIntError)A wrapper around ParseIntError type
Trait Implementations
impl Debug for ParseAmountError[src]
impl Debug for ParseAmountErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<ParseIntError> for ParseAmountError[src]
impl From<ParseIntError> for ParseAmountErrorfn from(error: ParseIntError) -> ParseAmountError[src]
fn from(error: ParseIntError) -> ParseAmountErrorPerforms the conversion.
Auto Trait Implementations
impl Send for ParseAmountError
impl Send for ParseAmountErrorimpl Sync for ParseAmountError
impl Sync for ParseAmountError