Struct forecast_io::DailyData [] [src]

pub struct DailyData {
    pub apparent_temperature_max_time: u64,
    pub apparent_temperature_max: f64,
    pub apparent_temperature_min_time: u64,
    pub apparent_temperature_min: f64,
    pub cloud_cover: f64,
    pub dew_point: f64,
    pub humidity: f64,
    pub icon: Icon,
    pub moon_phase: f64,
    pub ozone: f64,
    pub precip_intensity_max: f64,
    pub precip_intensity: f64,
    pub precip_probability: f64,
    pub precip_type: Option<PrecipitationType>,
    pub pressure: f64,
    pub summary: String,
    pub sunrise_time: u64,
    pub sunset_time: u64,
    pub temperature_max_time: u64,
    pub temperature_max: f64,
    pub temperature_min_time: u64,
    pub temperature_min: f64,
    pub time: u64,
    pub visibility: Option<f64>,
    pub wind_bearing: f64,
    pub wind_speed: f64,
}

Fields

Trait Implementations

impl Debug for DailyData
[src]

Formats the value using the given formatter.

impl Clone for DailyData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more