spinoso_time/time/tzrs/to_a.rs
1use super::Time;
2
3/// Serialized representation of a timestamp using a ten-element array of
4/// datetime components.
5///
6/// [sec, min, hour, day, month, year, wday, yday, isdst, zone]
7#[derive(Debug, Clone, PartialEq, Eq)]
8pub struct ToA {
9 /// The second of the minute `0..=59` for the source _time_.
10 pub sec: u8,
11 /// The minute of the hour `0..=59` for the source _time_.
12 pub min: u8,
13 /// The hour of the day `0..=23` for the source _time_.
14 pub hour: u8,
15 /// The day of the month `1..=n` for the source _time_.
16 pub day: u8,
17 /// The month of the year `1..=12` for the source _time_.
18 pub month: u8,
19 /// The year (including the century) for the source _time_.
20 pub year: i32,
21 /// An integer representing the day of the week, `0..=6`, with Sunday == 0
22 /// for the source _time_.
23 pub wday: u8,
24 /// An integer representing the day of the year, `1..=366` for the source
25 /// _time_.
26 pub yday: u16,
27 /// Whether the source _time_ occurs during Daylight Saving Time in its time
28 /// zone.
29 pub isdst: bool,
30 /// The timezone used for the source _time_.
31 pub zone: String,
32}
33
34impl From<Time> for ToA {
35 #[inline]
36 fn from(time: Time) -> Self {
37 Self {
38 sec: time.second(),
39 min: time.minute(),
40 hour: time.hour(),
41 day: time.day(),
42 month: time.month(),
43 year: time.year(),
44 wday: time.day_of_week(),
45 yday: time.day_of_year(),
46 isdst: time.is_dst(),
47 zone: String::from(time.time_zone()),
48 }
49 }
50}