pub struct CurrentCondition {Show 13 fields
pub temp_F: String,
pub temp_C: String,
pub feels_like_f: String,
pub feels_like_c: String,
pub humidity: String,
pub weatherDesc: Vec<WeatherDesc>,
pub windspeedMiles: String,
pub windspeedKmph: String,
pub winddir16Point: String,
pub precipMM: String,
pub visibility: String,
pub pressure: String,
pub uvIndex: String,
}Fields§
§temp_F: String§temp_C: String§feels_like_f: String§feels_like_c: String§humidity: String§weatherDesc: Vec<WeatherDesc>§windspeedMiles: String§windspeedKmph: String§winddir16Point: String§precipMM: String§visibility: String§pressure: String§uvIndex: StringTrait Implementations§
Source§impl Debug for CurrentCondition
impl Debug for CurrentCondition
Source§impl<'de> Deserialize<'de> for CurrentCondition
impl<'de> Deserialize<'de> for CurrentCondition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CurrentCondition
impl RefUnwindSafe for CurrentCondition
impl Send for CurrentCondition
impl Sync for CurrentCondition
impl Unpin for CurrentCondition
impl UnsafeUnpin for CurrentCondition
impl UnwindSafe for CurrentCondition
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