1use core::fmt;
7#[cfg(all(
8 feature = "now",
9 not(all(
10 target_arch = "wasm32",
11 feature = "wasmbind",
12 not(any(target_os = "emscripten", target_os = "wasi"))
13 ))
14))]
15use std::time::{SystemTime, UNIX_EPOCH};
16
17#[cfg(any(feature = "rkyv", feature = "rkyv-16", feature = "rkyv-32", feature = "rkyv-64"))]
18use rkyv::{Archive, Deserialize, Serialize};
19
20use super::{FixedOffset, LocalResult, Offset, TimeZone};
21use crate::naive::{NaiveDate, NaiveDateTime};
22#[cfg(feature = "now")]
23#[allow(deprecated)]
24use crate::{Date, DateTime};
25
26#[derive(Copy, Clone, PartialEq, Eq, Hash)]
44#[cfg_attr(
45 any(feature = "rkyv", feature = "rkyv-16", feature = "rkyv-32", feature = "rkyv-64"),
46 derive(Archive, Deserialize, Serialize),
47 archive(compare(PartialEq)),
48 archive_attr(derive(Clone, Copy, PartialEq, Eq, Debug, Hash))
49)]
50#[cfg_attr(feature = "rkyv-validation", archive(check_bytes))]
51#[cfg_attr(all(feature = "arbitrary", feature = "std"), derive(arbitrary::Arbitrary))]
52pub struct Utc;
53
54#[cfg(feature = "now")]
55impl Utc {
56 #[deprecated(
58 since = "0.4.23",
59 note = "use `Utc::now()` instead, potentially with `.date_naive()`"
60 )]
61 #[allow(deprecated)]
62 #[must_use]
63 pub fn today() -> Date<Utc> {
64 Utc::now().date()
65 }
66
67 #[cfg(not(all(
90 target_arch = "wasm32",
91 feature = "wasmbind",
92 not(any(target_os = "emscripten", target_os = "wasi"))
93 )))]
94 #[must_use]
95 pub fn now() -> DateTime<Utc> {
96 let now =
97 SystemTime::now().duration_since(UNIX_EPOCH).expect("system time before Unix epoch");
98 let naive =
99 NaiveDateTime::from_timestamp_opt(now.as_secs() as i64, now.subsec_nanos()).unwrap();
100 Utc.from_utc_datetime(&naive)
101 }
102
103 #[cfg(all(
105 target_arch = "wasm32",
106 feature = "wasmbind",
107 not(any(target_os = "emscripten", target_os = "wasi"))
108 ))]
109 #[must_use]
110 pub fn now() -> DateTime<Utc> {
111 let now = js_sys::Date::new_0();
112 DateTime::<Utc>::from(now)
113 }
114}
115
116impl TimeZone for Utc {
117 type Offset = Utc;
118
119 fn from_offset(_state: &Utc) -> Utc {
120 Utc
121 }
122
123 fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<Utc> {
124 LocalResult::Single(Utc)
125 }
126 fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<Utc> {
127 LocalResult::Single(Utc)
128 }
129
130 fn offset_from_utc_date(&self, _utc: &NaiveDate) -> Utc {
131 Utc
132 }
133 fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> Utc {
134 Utc
135 }
136}
137
138impl Offset for Utc {
139 fn fix(&self) -> FixedOffset {
140 FixedOffset::east_opt(0).unwrap()
141 }
142}
143
144impl fmt::Debug for Utc {
145 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
146 write!(f, "Z")
147 }
148}
149
150impl fmt::Display for Utc {
151 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
152 write!(f, "UTC")
153 }
154}