pub enum WeatherResponseError {
ErrorRetrievingData,
NotSupported,
ApiKeyLimitExhausted,
CouldNotAuthenticate,
TemporarilyUnavailable(String),
UnknownError(StatusCode),
InvalidResponse,
}Variants§
ErrorRetrievingData
NotSupported
ApiKeyLimitExhausted
CouldNotAuthenticate
UnknownError(StatusCode)
InvalidResponse
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WeatherResponseError
impl RefUnwindSafe for WeatherResponseError
impl Send for WeatherResponseError
impl Sync for WeatherResponseError
impl Unpin for WeatherResponseError
impl UnwindSafe for WeatherResponseError
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