libtad_models/time/
utc.rs

1use super::Time;
2use serde::Deserialize;
3
4#[derive(Debug, Deserialize)]
5/// UTC time stamp of the requested time.
6pub struct Utc {
7    /// UTC time stamp in ISO8601 format, and (if requested) split into components.
8    pub time: Time,
9}