pub struct Day {
Show 26 fields pub forecast_start: String, pub forecast_end: String, pub condition_code: ConditionCode, pub max_uv_index: f64, pub moon_phase: Option<MoonPhase>, pub moonrise: Option<String>, pub moonset: Option<String>, pub precipitation_amount: f64, pub precipitation_chance: f64, pub precipitation_type: PrecipitationType, pub snowfall_amount: f64, pub solar_midnight: Option<String>, pub solar_noon: Option<String>, pub sunrise: Option<String>, pub sunrise_civil: Option<String>, pub sunrise_nautical: Option<String>, pub sunrise_astronomical: Option<String>, pub sunset: Option<String>, pub sunset_civil: Option<String>, pub sunset_nautical: Option<String>, pub sunset_astronomical: Option<String>, pub temperature_max: f64, pub temperature_min: f64, pub daytime_forecast: Option<Forecast>, pub overnight_forecast: Option<Forecast>, pub rest_of_day_forecast: Option<Forecast>,
}

Fields

forecast_start: Stringforecast_end: Stringcondition_code: ConditionCodemax_uv_index: f64moon_phase: Option<MoonPhase>moonrise: Option<String>moonset: Option<String>precipitation_amount: f64precipitation_chance: f64precipitation_type: PrecipitationTypesnowfall_amount: f64solar_midnight: Option<String>solar_noon: Option<String>sunrise: Option<String>sunrise_civil: Option<String>sunrise_nautical: Option<String>sunrise_astronomical: Option<String>sunset: Option<String>sunset_civil: Option<String>sunset_nautical: Option<String>sunset_astronomical: Option<String>temperature_max: f64temperature_min: f64daytime_forecast: Option<Forecast>overnight_forecast: Option<Forecast>rest_of_day_forecast: Option<Forecast>

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more