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 duplicate 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) -> ParseDecimalError
fn from(_: TooLargeForDecimalError) -> ParseDecimalError
Converts to this type from the input type.
Source§impl From<TooLargeForDecimalError> for ThinError
impl From<TooLargeForDecimalError> for ThinError
Source§fn from(_: TooLargeForDecimalError) -> ThinError
fn from(_: TooLargeForDecimalError) -> ThinError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more