Enum bitcoin::util::amount::ParseAmountError [−][src]
pub enum ParseAmountError {
Negative,
TooBig,
TooPrecise,
InvalidFormat,
InputTooLarge,
InvalidCharacter(char),
UnknownDenomination(String),
}
Expand description
An error during amount parsing.
Variants
Negative
Amount is negative.
TooBig
Amount is too big to fit inside the type.
TooPrecise
Amount has higher precision than supported by the type.
InvalidFormat
Invalid number format.
InputTooLarge
Input string was too large.
InvalidCharacter(char)
Tuple Fields
0: char
Invalid character in input.
UnknownDenomination(String)
Tuple Fields
0: String
The denomination was unknown.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ParseAmountError
impl Send for ParseAmountError
impl Sync for ParseAmountError
impl Unpin for ParseAmountError
impl UnwindSafe for ParseAmountError
Blanket Implementations
Mutably borrows from an owned value. Read more