27 lines
726 B
Rust
27 lines
726 B
Rust
//! # Current Weather Data
|
|
//!
|
|
//! Data structures and utilities for parsing and working with responses
|
|
//! from the **`OpenWeatherMap` Current Weather API**.
|
|
//!
|
|
//! See: <https://openweathermap.org/current>
|
|
//!
|
|
//! ## Features
|
|
//!
|
|
//! - Complete type-safe representation of all API response fields
|
|
//! - Optional fields for resilience against API changes
|
|
//! - Convenient accessor methods
|
|
//! - Chrono integration for date/time handling
|
|
//! - Comprehensive error handling
|
|
//!
|
|
//! ## See Also
|
|
//! - [`forecast`](crate::forecast) for multi-day weather data
|
|
//! - [`query`](crate::query) for building request URLs
|
|
|
|
pub mod clouds;
|
|
pub mod coord;
|
|
pub mod main;
|
|
pub mod precipitation;
|
|
pub mod sys;
|
|
pub mod weather;
|
|
pub mod wind;
|