pub struct WeatherMainNode {
pub temp: f32,
pub feels_like: f32,
pub temp_min: f32,
pub temp_max: f32,
pub pressure: i32,
pub humidity: i32,
pub sea_level: i32,
pub grnd_level: i32,
}Fields§
§temp: f32§feels_like: f32§temp_min: f32§temp_max: f32§pressure: i32§humidity: i32§sea_level: i32§grnd_level: i32Trait Implementations§
Source§impl Debug for WeatherMainNode
impl Debug for WeatherMainNode
Source§impl<'de> Deserialize<'de> for WeatherMainNode
impl<'de> Deserialize<'de> for WeatherMainNode
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 WeatherMainNode
impl RefUnwindSafe for WeatherMainNode
impl Send for WeatherMainNode
impl Sync for WeatherMainNode
impl Unpin for WeatherMainNode
impl UnwindSafe for WeatherMainNode
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