libtad-models 0.2.0

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

#[derive(Debug, Deserialize)]
/// Requested astronomical information.
pub struct AstronomyDetails {
    /// Astronomical information for the requested objects.
    pub objects: Vec<AstronomyObjectDetails>,
}