pub enum PriceKindParseError {
Empty,
}Expand description
Errors returned while parsing price kinds.
Variants§
Empty
The input was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for PriceKindParseError
impl Clone for PriceKindParseError
Source§fn clone(&self) -> PriceKindParseError
fn clone(&self) -> PriceKindParseError
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 PriceKindParseError
impl Debug for PriceKindParseError
Source§impl Display for PriceKindParseError
impl Display for PriceKindParseError
Source§impl Error for PriceKindParseError
impl Error for PriceKindParseError
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 PartialEq for PriceKindParseError
impl PartialEq for PriceKindParseError
impl Copy for PriceKindParseError
impl Eq for PriceKindParseError
impl StructuralPartialEq for PriceKindParseError
Auto Trait Implementations§
impl Freeze for PriceKindParseError
impl RefUnwindSafe for PriceKindParseError
impl Send for PriceKindParseError
impl Sync for PriceKindParseError
impl Unpin for PriceKindParseError
impl UnsafeUnpin for PriceKindParseError
impl UnwindSafe for PriceKindParseError
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