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

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

Trait Implementations

impl Debug for DailyData
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for DailyData
[src]

fn clone(&self) -> DailyData

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more