1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
use ;
/// Returns the current local date and time.
///
/// This function provides a convenient way to retrieve the current timestamp
/// using the local timezone from the `chrono` crate.
///
/// # Returns
///
/// A `DateTime<Local>` representing the current moment in the local time zone.
///
/// # Examples
///
/// ```rust
/// use chrono::Local;
///
/// let current_time = now();
/// println!("Current time: {}", current_time);
/// ```
///
/// # Note
///
/// - The returned time is based on the system's local time zone
/// - Precision depends on the system clock
/// - Recommended for logging, timestamps, and local time-related operations
///
/// # Panics
///
/// This function will not panic under normal circumstances.
/// Get the current UTC date and time
///
/// Returns the current timestamp using the UTC timezone
///
/// # Returns
///
/// `DateTime<Utc>` representing the current UTC time
///
/// # Examples
///
/// ```rust
/// let current_utc_time = utc_now();
/// println!("Current UTC time: {}", current_utc_time);
/// ```
/// Get the current Unix timestamp in seconds
///
/// Returns the number of seconds since the Unix epoch (1970-01-01 00:00:00 UTC)
///
/// # Returns
///
/// `i64` Unix timestamp in seconds
///
/// # Examples
///
/// ```rust
/// let current_timestamp = timestamp();
/// println!("Current timestamp (seconds): {}", current_timestamp);
/// ```
/// Get the current Unix timestamp in milliseconds
///
/// Returns the number of milliseconds since the Unix epoch (1970-01-01 00:00:00 UTC)
///
/// # Returns
///
/// `i64` Unix timestamp in milliseconds
///
/// # Examples
///
/// ```rust
/// let current_timestamp_ms = timestamp_millis();
/// println!("Current timestamp (milliseconds): {}", current_timestamp_ms);
/// ```
/// Format a datetime as a string
///
/// Converts a datetime to a string using the specified format
///
/// # Parameters
///
/// - `dt`: Local datetime to be formatted
/// - `fmt`: Format pattern string
///
/// # Returns
///
/// Formatted datetime string
///
/// # Examples
///
/// ```rust
/// let dt = Local::now();
/// let formatted = format(dt, "%Y-%m-%d %H:%M:%S");
/// println!("Formatted time: {}", formatted);
/// ```
///
/// # Format Specifiers
/// - `%Y`: 4-digit year
/// - `%m`: 2-digit month
/// - `%d`: 2-digit day
/// - `%H`: Hour in 24-hour format
/// - `%M`: Minutes
/// - `%S`: Seconds
/// Convert UTC time to local time
///
/// # Parameters
///
/// - `dt`: UTC datetime to convert
///
/// # Returns
///
/// Converted local datetime
///
/// # Examples
///
/// ```rust
/// let utc_time = Utc::now();
/// let local_time = utc_to_local(utc_time);
/// ```
/// Convert local time to UTC time
///
/// # Parameters
///
/// - `dt`: Local datetime to convert
///
/// # Returns
///
/// Converted UTC datetime
///
/// # Examples
///
/// ```rust
/// let local_time = Local::now();
/// let utc_time = local_to_utc(local_time);
/// ```
/// Add specified number of days to a UTC datetime
///
/// # Parameters
///
/// - `dt`: Original UTC datetime
/// - `days`: Number of days to add (can be negative)
///
/// # Returns
///
/// UTC datetime after adding specified days
///
/// # Examples
///
/// ```rust
/// let now = Utc::now();
/// let future_date = add_days(now, 7); // 7 days later
/// let past_date = add_days(now, -7); // 7 days ago
/// ```
/// Add specified number of hours to a UTC datetime
///
/// # Parameters
///
/// - `dt`: Original UTC datetime
/// - `hours`: Number of hours to add (can be negative)
///
/// # Returns
///
/// UTC datetime after adding specified hours
///
/// # Examples
///
/// ```rust
/// let now = Utc::now();
/// let later = add_hours(now, 3); // 3 hours later
/// let earlier = add_hours(now, -3); // 3 hours ago
/// ```
/// Calculate the difference between two UTC times in seconds
///
/// # Parameters
///
/// - `dt1`: First UTC datetime
/// - `dt2`: Second UTC datetime
///
/// # Returns
///
/// Number of seconds between two times (dt2 - dt1)
///
/// # Examples
///
/// ```rust
/// let time1 = Utc::now();
/// // Some operations
/// let time2 = Utc::now();
/// let seconds_diff = diff_seconds(time1, time2);
/// ```
///
/// # Notes
///
/// - Return value can be positive or negative depending on time order
/// - Precise to the second level