openmeteo-rs 1.0.0

Rust client for the Open-Meteo weather API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Shared response types and JSON decoding.

mod descriptor;
mod json;
mod row;
#[cfg(test)]
mod tests;
mod types;

pub use descriptor::{Variable, VariableDescriptor};
pub(crate) use json::{decode_forecast_json, decode_forecast_json_many};
pub use row::{HourlyRow, HourlyRowIter};
pub use types::{
    CurrentData, DailyData, ForecastResponse, HourlyData, Minutely15Data, MonthlyData,
    SeriesValues, VariableSeries,
};