pub enum DecimalNumberParsingError {
InvalidNumber(String),
LongWhole(String),
LongFractional(String),
}
Variants§
Trait Implementations§
Source§impl Clone for DecimalNumberParsingError
impl Clone for DecimalNumberParsingError
Source§fn clone(&self) -> DecimalNumberParsingError
fn clone(&self) -> DecimalNumberParsingError
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 DecimalNumberParsingError
impl Debug for DecimalNumberParsingError
Source§impl Display for DecimalNumberParsingError
impl Display for DecimalNumberParsingError
Source§impl Error for DecimalNumberParsingError
impl Error for DecimalNumberParsingError
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
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl Eq for DecimalNumberParsingError
impl StructuralPartialEq for DecimalNumberParsingError
Auto Trait Implementations§
impl Freeze for DecimalNumberParsingError
impl RefUnwindSafe for DecimalNumberParsingError
impl Send for DecimalNumberParsingError
impl Sync for DecimalNumberParsingError
impl Unpin for DecimalNumberParsingError
impl UnwindSafe for DecimalNumberParsingError
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