Files
open-meteo-cli/src/current_weather_print_params.rs
T

17 lines
433 B
Rust
Raw Normal View History

2023-06-18 13:53:45 +02:00
use crate::{
formats::data_format::DataFormat, formats::speed_unit::SpeedUnit, formats::temp_unit::TempUnit,
};
2023-06-08 23:10:21 +02:00
pub struct CurrentWeatherPrintParams {
pub all: bool,
pub is_day: bool,
pub temperature: bool,
2023-06-08 23:10:21 +02:00
pub temperature_unit: TempUnit,
pub windspeed: bool,
2023-06-08 23:10:21 +02:00
pub speed_unit: SpeedUnit,
pub winddirection: bool,
pub include_coords: bool,
pub include_city: bool,
pub format: DataFormat,
}