Struct forecast::DataPoint[][src]

pub struct DataPoint {
    pub apparent_temperature: Option<f64>,
    pub apparent_temperature_high: Option<f64>,
    pub apparent_temperature_high_time: Option<u64>,
    pub apparent_temperature_low: Option<f64>,
    pub apparent_temperature_low_time: Option<u64>,
    pub apparent_temperature_max: Option<f64>,
    pub apparent_temperature_max_time: Option<u64>,
    pub apparent_temperature_min: Option<f64>,
    pub apparent_temperature_min_time: Option<u64>,
    pub cloud_cover: Option<f64>,
    pub dew_point: Option<f64>,
    pub humidity: Option<f64>,
    pub icon: Option<Icon>,
    pub moon_phase: Option<f64>,
    pub nearest_storm_bearing: Option<f64>,
    pub nearest_storm_distance: Option<f64>,
    pub ozone: Option<f64>,
    pub precip_accumulation: Option<f64>,
    pub precip_intensity: Option<f64>,
    pub precip_intensity_max: Option<f64>,
    pub precip_intensity_max_time: Option<u64>,
    pub precip_probability: Option<f64>,
    pub precip_type: Option<PrecipType>,
    pub pressure: Option<f64>,
    pub summary: Option<String>,
    pub sunrise_time: Option<u64>,
    pub sunset_time: Option<u64>,
    pub temperature: Option<f64>,
    pub temperature_high: Option<f64>,
    pub temperature_high_time: Option<u64>,
    pub temperature_low: Option<f64>,
    pub temperature_low_time: Option<u64>,
    pub temperature_max: Option<f64>,
    pub temperature_max_time: Option<u64>,
    pub temperature_min: Option<f64>,
    pub temperature_min_time: Option<u64>,
    pub time: u64,
    pub uv_index: Option<f64>,
    pub uv_index_time: Option<u64>,
    pub visibility: Option<f64>,
    pub wind_bearing: Option<f64>,
    pub wind_gust: Option<f64>,
    pub wind_gust_time: Option<u64>,
    pub wind_speed: Option<f64>,
}

Model object containing various properties, each representing the average (unless otherwise specified) of a particular weather phenomenon occurring during a period of time.

Fields

Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0
Deprecated since 1.0.0

Trait Implementations

impl Clone for DataPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DataPoint
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for DataPoint
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DataPoint

impl Sync for DataPoint