Enum bigdecimal::ParseBigDecimalError
source · [−]pub enum ParseBigDecimalError {
ParseDecimal(ParseFloatError),
ParseInt(ParseIntError),
ParseBigInt(ParseBigIntError),
Empty,
Other(String),
}Variants
ParseDecimal(ParseFloatError)
ParseInt(ParseIntError)
ParseBigInt(ParseBigIntError)
Empty
Other(String)
Trait Implementations
sourceimpl Debug for ParseBigDecimalError
impl Debug for ParseBigDecimalError
sourceimpl Display for ParseBigDecimalError
impl Display for ParseBigDecimalError
sourceimpl Error for ParseBigDecimalError
impl Error for ParseBigDecimalError
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourceimpl From<ParseBigIntError> for ParseBigDecimalError
impl From<ParseBigIntError> for ParseBigDecimalError
sourcefn from(err: ParseBigIntError) -> ParseBigDecimalError
fn from(err: ParseBigIntError) -> ParseBigDecimalError
Converts to this type from the input type.
sourceimpl From<ParseFloatError> for ParseBigDecimalError
impl From<ParseFloatError> for ParseBigDecimalError
sourcefn from(err: ParseFloatError) -> ParseBigDecimalError
fn from(err: ParseFloatError) -> ParseBigDecimalError
Converts to this type from the input type.
sourceimpl From<ParseIntError> for ParseBigDecimalError
impl From<ParseIntError> for ParseBigDecimalError
sourcefn from(err: ParseIntError) -> ParseBigDecimalError
fn from(err: ParseIntError) -> ParseBigDecimalError
Converts to this type from the input type.
sourceimpl PartialEq<ParseBigDecimalError> for ParseBigDecimalError
impl PartialEq<ParseBigDecimalError> for ParseBigDecimalError
sourcefn eq(&self, other: &ParseBigDecimalError) -> bool
fn eq(&self, other: &ParseBigDecimalError) -> bool
impl StructuralPartialEq for ParseBigDecimalError
Auto Trait Implementations
impl RefUnwindSafe for ParseBigDecimalError
impl Send for ParseBigDecimalError
impl Sync for ParseBigDecimalError
impl Unpin for ParseBigDecimalError
impl UnwindSafe for ParseBigDecimalError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more