Struct forecast_io::Current [] [src]

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

Fields

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

Trait Implementations

impl Debug for Current
[src]

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

Formats the value using the given formatter.

impl Clone for Current
[src]

fn clone(&self) -> Current

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