pub struct GetMiscWeather200Response {
pub adcode: Option<String>,
pub city: Option<String>,
pub humidity: Option<i32>,
pub province: Option<String>,
pub report_time: Option<String>,
pub temperature: Option<i32>,
pub weather: Option<String>,
pub wind_direction: Option<String>,
pub wind_power: Option<String>,
}Fields§
§adcode: Option<String>§city: Option<String>§humidity: Option<i32>§province: Option<String>§report_time: Option<String>§temperature: Option<i32>§weather: Option<String>§wind_direction: Option<String>§wind_power: Option<String>Implementations§
Source§impl GetMiscWeather200Response
impl GetMiscWeather200Response
pub fn new() -> GetMiscWeather200Response
Trait Implementations§
Source§impl Clone for GetMiscWeather200Response
impl Clone for GetMiscWeather200Response
Source§fn clone(&self) -> GetMiscWeather200Response
fn clone(&self) -> GetMiscWeather200Response
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 GetMiscWeather200Response
impl Debug for GetMiscWeather200Response
Source§impl Default for GetMiscWeather200Response
impl Default for GetMiscWeather200Response
Source§fn default() -> GetMiscWeather200Response
fn default() -> GetMiscWeather200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMiscWeather200Response
impl<'de> Deserialize<'de> for GetMiscWeather200Response
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
impl StructuralPartialEq for GetMiscWeather200Response
Auto Trait Implementations§
impl Freeze for GetMiscWeather200Response
impl RefUnwindSafe for GetMiscWeather200Response
impl Send for GetMiscWeather200Response
impl Sync for GetMiscWeather200Response
impl Unpin for GetMiscWeather200Response
impl UnwindSafe for GetMiscWeather200Response
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