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)
Invalid character in input.
UnknownDenomination(String)
The denomination was unknown.
Trait Implementations§
Source§impl Clone for ParseAmountError
impl Clone for ParseAmountError
Source§fn clone(&self) -> ParseAmountError
fn clone(&self) -> ParseAmountError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParseAmountError
impl Debug for ParseAmountError
Source§impl Display for ParseAmountError
impl Display for ParseAmountError
Source§impl Error for ParseAmountError
impl Error for ParseAmountError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ParseAmountError
impl PartialEq for ParseAmountError
impl Eq for ParseAmountError
impl StructuralPartialEq for ParseAmountError
Auto Trait Implementations§
impl Freeze for ParseAmountError
impl RefUnwindSafe for ParseAmountError
impl Send for ParseAmountError
impl Sync for ParseAmountError
impl Unpin for ParseAmountError
impl UnwindSafe for ParseAmountError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more