Enum PrecipitationIntensityParseError
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§
§impl Clone for PrecipitationIntensityParseError
impl Clone for PrecipitationIntensityParseError
§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 more§impl Debug for PrecipitationIntensityParseError
impl Debug for PrecipitationIntensityParseError
§impl Display for PrecipitationIntensityParseError
impl Display for PrecipitationIntensityParseError
§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()
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