[][src]Struct accuweather::types::DayPartForecast

pub struct DayPartForecast {
    pub cloud_cover: i32,
    pub hours_of_precipitation: f32,
    pub hours_of_rain: f32,
    pub ice: AccuweatherMeasurement,
    pub ice_probability: i32,
    pub icon: i32,
    pub icon_phrase: String,
    pub long_phrase: String,
    pub precipitation_probability: i32,
    pub rain: AccuweatherMeasurement,
    pub rain_probability: i32,
    pub short_phrase: String,
    pub snow: AccuweatherMeasurement,
    pub snow_probability: i32,
    pub thunderstorm_probability: i32,
    pub total_liquid: AccuweatherMeasurement,
    pub wind: Wind,
    pub wind_gust: Wind,
}

Represention of forecast for a day part (either night or day) in daily forecast api.

Fields

cloud_cover: i32hours_of_precipitation: f32hours_of_rain: f32ice: AccuweatherMeasurementice_probability: i32icon: i32icon_phrase: Stringlong_phrase: Stringprecipitation_probability: i32rain: AccuweatherMeasurementrain_probability: i32short_phrase: Stringsnow: AccuweatherMeasurementsnow_probability: i32thunderstorm_probability: i32total_liquid: AccuweatherMeasurementwind: Windwind_gust: Wind

Trait Implementations

impl Debug for DayPartForecast[src]

impl<'de> Deserialize<'de> for DayPartForecast[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,