pub struct WeatherAttributes {
pub cloudiness: f32,
pub cloud_brightness: f32,
pub moisture: f32,
pub wind_presence: f32,
pub wind_strength: f32,
pub temperature: f32,
pub light: f32,
pub rain_intensity: f32,
}Fields§
§cloudiness: f32§cloud_brightness: f32§moisture: f32§wind_presence: f32§wind_strength: f32§temperature: f32§light: f32§rain_intensity: f32Trait Implementations§
Source§impl Debug for WeatherAttributes
impl Debug for WeatherAttributes
Source§impl Default for WeatherAttributes
impl Default for WeatherAttributes
Source§fn default() -> WeatherAttributes
fn default() -> WeatherAttributes
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WeatherAttributes
impl RefUnwindSafe for WeatherAttributes
impl Send for WeatherAttributes
impl Sync for WeatherAttributes
impl Unpin for WeatherAttributes
impl UnwindSafe for WeatherAttributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self to an expression for Diesel’s query builder. Read more