Struct forecast_io::HourlyData [] [src]

pub struct HourlyData {
    pub apparent_temperature: f64,
    pub cloud_cover: f64,
    pub dew_point: f64,
    pub humidity: f64,
    pub icon: Icon,
    pub ozone: f64,
    pub precip_intensity: f64,
    pub precip_probability: f64,
    pub precip_type: Option<PrecipitationType>,
    pub pressure: f64,
    pub summary: String,
    pub temperature: f64,
    pub time: u64,
    pub visibility: f64,
    pub wind_bearing: f64,
    pub wind_speed: f64,
}

Fields

apparent_temperature: f64 cloud_cover: f64 dew_point: f64 humidity: f64 icon: Icon ozone: f64 precip_intensity: f64 precip_probability: f64 precip_type: Option<PrecipitationType> pressure: f64 summary: String temperature: f64 time: u64 visibility: f64 wind_bearing: f64 wind_speed: f64

Trait Implementations

impl Debug for HourlyData
[src]

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

Formats the value using the given formatter.

impl Clone for HourlyData
[src]

fn clone(&self) -> HourlyData

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