libtad-models 0.2.0

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

#[derive(Debug, Deserialize)]
/// UTC time stamp of the requested time.
pub struct Utc {
    /// UTC time stamp in ISO8601 format, and (if requested) split into components.
    pub time: Time,
}