Typo naming

This commit is contained in:
2023-05-26 20:30:17 +02:00
parent dbcf9437b6
commit 09df3cc6ed
3 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1,34 @@
pub struct CurrentWeatherPrintParams {
pub all: bool,
pub is_day: bool,
pub temperature: bool,
pub windspeed: bool,
pub winddirection: bool,
pub include_coords: bool,
pub include_city: bool,
pub clean: bool,
}
impl CurrentWeatherPrintParams {
pub fn new(
all: bool,
is_day: bool,
temperature: bool,
windspeed: bool,
winddirection: bool,
include_coords: bool,
include_city: bool,
clean: bool,
) -> CurrentWeatherPrintParams {
CurrentWeatherPrintParams {
all,
is_day,
temperature,
windspeed,
winddirection,
include_coords,
include_city,
clean,
}
}
}