libtad-models 0.2.0

Time and Date API models
Documentation
1
2
3
4
5
6
7
8
9
use super::AstronomyObject;
use serde::Deserialize;

#[derive(Deserialize)]
/// Astronomical information for requested objects.
pub struct Astronomy {
    /// List of requested objects.
    pub objects: Vec<AstronomyObject>,
}