pub struct WindSpeedData {
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 WindSpeedData
impl Clone for WindSpeedData
Source§fn clone(&self) -> WindSpeedData
fn clone(&self) -> WindSpeedData
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 WindSpeedData
impl Debug for WindSpeedData
Source§impl<'de> Deserialize<'de> for WindSpeedData
impl<'de> Deserialize<'de> for WindSpeedData
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 WindSpeedData
impl PartialEq for WindSpeedData
Source§impl Serialize for WindSpeedData
impl Serialize for WindSpeedData
impl StructuralPartialEq for WindSpeedData
Auto Trait Implementations§
impl Freeze for WindSpeedData
impl RefUnwindSafe for WindSpeedData
impl Send for WindSpeedData
impl Sync for WindSpeedData
impl Unpin for WindSpeedData
impl UnsafeUnpin for WindSpeedData
impl UnwindSafe for WindSpeedData
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