pub enum PrecipitationIntensityParseError {
Empty,
}Expand description
Error returned when parsing precipitation intensity fails.
Variants§
Empty
The precipitation intensity was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for PrecipitationIntensityParseError
impl Clone for PrecipitationIntensityParseError
Source§fn clone(&self) -> PrecipitationIntensityParseError
fn clone(&self) -> PrecipitationIntensityParseError
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 Error for PrecipitationIntensityParseError
impl Error for PrecipitationIntensityParseError
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 PrecipitationIntensityParseError
impl PartialEq for PrecipitationIntensityParseError
Source§fn eq(&self, other: &PrecipitationIntensityParseError) -> bool
fn eq(&self, other: &PrecipitationIntensityParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PrecipitationIntensityParseError
impl Eq for PrecipitationIntensityParseError
impl StructuralPartialEq for PrecipitationIntensityParseError
Auto Trait Implementations§
impl Freeze for PrecipitationIntensityParseError
impl RefUnwindSafe for PrecipitationIntensityParseError
impl Send for PrecipitationIntensityParseError
impl Sync for PrecipitationIntensityParseError
impl Unpin for PrecipitationIntensityParseError
impl UnsafeUnpin for PrecipitationIntensityParseError
impl UnwindSafe for PrecipitationIntensityParseError
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