pub enum ParseQuantityError {
EmptyString,
ParsingFailed(Err<Error<String>>),
DecimalParsingFailed,
}Variants§
EmptyString
The string is empty
ParsingFailed(Err<Error<String>>)
The string is not a valid quantity format
DecimalParsingFailed
The numeric value is not a valid decimal number
Trait Implementations§
Source§impl Debug for ParseQuantityError
impl Debug for ParseQuantityError
Source§impl Display for ParseQuantityError
impl Display for ParseQuantityError
Source§impl Error for ParseQuantityError
impl Error for ParseQuantityError
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()
Auto Trait Implementations§
impl Freeze for ParseQuantityError
impl RefUnwindSafe for ParseQuantityError
impl Send for ParseQuantityError
impl Sync for ParseQuantityError
impl Unpin for ParseQuantityError
impl UnwindSafe for ParseQuantityError
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