pub enum DecimalParseError {
Io(Error),
BigDecimalParse(ParseBigDecimalError),
}
Variants§
Io(Error)
BigDecimalParse(ParseBigDecimalError)
Trait Implementations§
Source§impl Debug for DecimalParseError
impl Debug for DecimalParseError
Source§impl Display for DecimalParseError
impl Display for DecimalParseError
Source§impl Error for DecimalParseError
impl Error for DecimalParseError
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<DecimalParseError> for ColumnParseError
impl From<DecimalParseError> for ColumnParseError
Source§fn from(source: DecimalParseError) -> Self
fn from(source: DecimalParseError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for DecimalParseError
impl From<Error> for DecimalParseError
Source§impl From<ParseBigDecimalError> for DecimalParseError
impl From<ParseBigDecimalError> for DecimalParseError
Source§fn from(source: ParseBigDecimalError) -> Self
fn from(source: ParseBigDecimalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecimalParseError
impl !RefUnwindSafe for DecimalParseError
impl Send for DecimalParseError
impl Sync for DecimalParseError
impl Unpin for DecimalParseError
impl !UnwindSafe for DecimalParseError
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