pub struct ParseDecimalError(/* private fields */);
Expand description
An error when parsing a Decimal
.
Trait Implementations§
Source§impl Debug for ParseDecimalError
impl Debug for ParseDecimalError
Source§impl Display for ParseDecimalError
impl Display for ParseDecimalError
Source§impl Error for ParseDecimalError
impl Error for ParseDecimalError
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 From<TooLargeForDecimalError> for ParseDecimalError
impl From<TooLargeForDecimalError> for ParseDecimalError
Source§fn from(_: TooLargeForDecimalError) -> Self
fn from(_: TooLargeForDecimalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseDecimalError
impl RefUnwindSafe for ParseDecimalError
impl Send for ParseDecimalError
impl Sync for ParseDecimalError
impl Unpin for ParseDecimalError
impl UnwindSafe for ParseDecimalError
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