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