pub struct RelativeHumidityData {
pub stations: Vec<NeaWeatherStation>,
pub readings: Vec<NeaReadingSnapshot>,
pub reading_type: String,
pub reading_unit: NeaMeasurementUnit,
pub pagination_token: Option<String>,
}Fields§
§stations: Vec<NeaWeatherStation>§readings: Vec<NeaReadingSnapshot>§reading_type: StringInformation about the reading
reading_unit: NeaMeasurementUnitUnit of measure for NEA station readings and outlook ranges
pagination_token: Option<String>Token to retrieve next page if exists
Trait Implementations§
Source§impl Clone for RelativeHumidityData
impl Clone for RelativeHumidityData
Source§fn clone(&self) -> RelativeHumidityData
fn clone(&self) -> RelativeHumidityData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RelativeHumidityData
impl Debug for RelativeHumidityData
Source§impl<'de> Deserialize<'de> for RelativeHumidityData
impl<'de> Deserialize<'de> for RelativeHumidityData
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
Source§impl PartialEq for RelativeHumidityData
impl PartialEq for RelativeHumidityData
Source§fn eq(&self, other: &RelativeHumidityData) -> bool
fn eq(&self, other: &RelativeHumidityData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RelativeHumidityData
impl Serialize for RelativeHumidityData
impl StructuralPartialEq for RelativeHumidityData
Auto Trait Implementations§
impl Freeze for RelativeHumidityData
impl RefUnwindSafe for RelativeHumidityData
impl Send for RelativeHumidityData
impl Sync for RelativeHumidityData
impl Unpin for RelativeHumidityData
impl UnsafeUnpin for RelativeHumidityData
impl UnwindSafe for RelativeHumidityData
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