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