libtad-rs 0.2.0

Rust library for accessing Time and Date APIs
Documentation
1
2
3
4
5
6
7
8
9
use libtad_models::tides::Station;
use serde::Deserialize;

#[derive(Debug, Deserialize)]
/// Tides API response.
pub struct TidesResponse {
    /// List of returned stations.
    pub stations: Vec<Station>,
}