pub struct TooLargeForDecimalError;
Expand description
The input is too large to fit into a Decimal
.
Matches XPath FOCA0001
error.
Trait Implementations§
Source§impl Clone for TooLargeForDecimalError
impl Clone for TooLargeForDecimalError
Source§fn clone(&self) -> TooLargeForDecimalError
fn clone(&self) -> TooLargeForDecimalError
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 TooLargeForDecimalError
impl Debug for TooLargeForDecimalError
Source§impl Display for TooLargeForDecimalError
impl Display for TooLargeForDecimalError
Source§impl Error for TooLargeForDecimalError
impl Error for TooLargeForDecimalError
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 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.
impl Copy for TooLargeForDecimalError
Auto Trait Implementations§
impl Freeze for TooLargeForDecimalError
impl RefUnwindSafe for TooLargeForDecimalError
impl Send for TooLargeForDecimalError
impl Sync for TooLargeForDecimalError
impl Unpin for TooLargeForDecimalError
impl UnwindSafe for TooLargeForDecimalError
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