datetime-string 0.2.2

Datetime string types
Documentation
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
//! RFC 3339 [`date-time`] string types.
//!
//! [`date-time`]: https://tools.ietf.org/html/rfc3339#section-5.6

#[cfg(feature = "alloc")]
mod owned;

use core::{
    convert::TryFrom,
    fmt,
    ops::{self, RangeFrom, RangeTo},
    str,
};

#[cfg(feature = "serde")]
use serde::Serialize;

use crate::error::{Error, ErrorKind};

use super::{FullDateStr, FullTimeStr};

#[cfg(feature = "alloc")]
pub use self::owned::DateTimeString;

/// Minimum length of the `date-time` string.
///
/// This is a length of `YYYY-MM-DDThh:mm:ssZ`.
const DATETIME_LEN_MIN: usize = 20;
/// Position of separator "T".
const T_POS: usize = 10;
/// Range of the date in a string.
///
/// This is always valid range for `full-date` string.
const DATE_RANGE: RangeTo<usize> = ..T_POS;
/// Range of the time in a string.
///
/// This is always valid range for `full-date` string.
const TIME_RANGE: RangeFrom<usize> = (T_POS + 1)..;

/// Validates the given string as an RFC 3339 [`date-time`].
///
/// [`date-time`]: https://tools.ietf.org/html/rfc3339#section-5.6
fn validate_bytes(s: &[u8]) -> Result<(), Error> {
    if s.len() < DATETIME_LEN_MIN {
        return Err(ErrorKind::TooShort.into());
    }

    if s[T_POS] != b'T' {
        return Err(ErrorKind::InvalidSeparator.into());
    }

    FullDateStr::from_bytes(&s[DATE_RANGE])?;
    FullTimeStr::from_bytes(&s[TIME_RANGE])?;

    Ok(())
}

/// String slice for a datetime in RFC 3339 [`date-time`] format, such as
/// `2001-06-17T12:34:56.7890-23:12`.
///
/// [`date-time`]: https://tools.ietf.org/html/rfc3339#section-5.6
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[repr(transparent)]
// Note that `derive(Serialize)` cannot used here, because it encodes this as
// `[u8]` rather than as a string.
//
// Comparisons implemented for the type are consistent (at least it is intended to be so).
// See <https://github.com/rust-lang/rust-clippy/issues/2025>.
// Note that `clippy::derive_ord_xor_partial_ord` would be introduced since Rust 1.47.0.
#[allow(clippy::derive_hash_xor_eq)]
#[allow(unknown_lints, clippy::derive_ord_xor_partial_ord)]
pub struct DateTimeStr([u8]);

impl DateTimeStr {
    /// Creates a `&DateTimeStr` from the given byte slice.
    ///
    /// This performs assertion in debug build, but not in release build.
    ///
    /// # Safety
    ///
    /// `validate_bytes(s)` should return `Ok(())`.
    #[inline]
    #[must_use]
    unsafe fn from_bytes_maybe_unchecked(s: &[u8]) -> &Self {
        debug_assert_ok!(validate_bytes(s));
        &*(s as *const [u8] as *const Self)
    }

    /// Creates a `&mut DateTimeStr` from the given mutable byte slice.
    ///
    /// This performs assertion in debug build, but not in release build.
    ///
    /// # Safety
    ///
    /// `validate_bytes(s)` should return `Ok(())`.
    #[inline]
    #[must_use]
    unsafe fn from_bytes_maybe_unchecked_mut(s: &mut [u8]) -> &mut Self {
        debug_assert_ok!(validate_bytes(s));
        &mut *(s as *mut [u8] as *mut Self)
    }

    /// Creates a `&mut DateTimeStr` from the given mutable string slice.
    ///
    /// This performs assertion in debug build, but not in release build.
    ///
    /// # Safety
    ///
    /// `validate_bytes(s.as_bytes())` should return `Ok(())`.
    #[inline]
    #[must_use]
    unsafe fn from_str_maybe_unchecked_mut(s: &mut str) -> &mut Self {
        // This is safe because `DateTimeStr` ensures that the underlying
        // bytes are ASCII string after modification.
        Self::from_bytes_maybe_unchecked_mut(s.as_bytes_mut())
    }

    /// Creates a new `&DateTimeStr` from a string slice.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// assert!(DateTimeStr::from_str("2000-02-29T12:34:56Z").is_ok());
    /// assert!(DateTimeStr::from_str("9999-12-31T23:59:59+23:59").is_ok());
    /// assert!(DateTimeStr::from_str("0000-01-01T00:00:00.0-00:00").is_ok());
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    // `FromStr` trait cannot be implemented for a slice.
    #[allow(clippy::should_implement_trait)]
    pub fn from_str(s: &str) -> Result<&Self, Error> {
        TryFrom::try_from(s)
    }

    /// Creates a new `&mut DateTimeStr` from a mutable string slice.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let mut buf = "2001-06-17T12:34:56.7890-23:12".to_owned();
    /// let datetime = DateTimeStr::from_mut_str(&mut buf)?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// datetime.date_mut().set_year(1999);
    /// assert_eq!(datetime.as_str(), "1999-06-17T12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    pub fn from_mut_str(s: &mut str) -> Result<&mut Self, Error> {
        TryFrom::try_from(s)
    }

    /// Creates a new `&DateTimeStr` from a byte slice.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_bytes(b"2001-06-17T12:34:56.7890-23:12")?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// assert!(DateTimeStr::from_bytes(b"2001-06-17T12:34:56Z").is_ok());
    /// assert!(DateTimeStr::from_bytes(b"9999-12-31T23:59:59+23:59").is_ok());
    /// assert!(DateTimeStr::from_bytes(b"0000-01-01T00:00:00.0-00:00").is_ok());
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    pub fn from_bytes(s: &[u8]) -> Result<&Self, Error> {
        TryFrom::try_from(s)
    }

    /// Creates a new `&mut DateTimeStr` from a mutable byte slice.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let mut buf = b"2001-06-17T12:34:56.7890-23:12".to_owned();
    /// let datetime = DateTimeStr::from_bytes_mut(&mut buf[..])?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// datetime.date_mut().set_year(1999);
    /// assert_eq!(datetime.as_str(), "1999-06-17T12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    pub fn from_bytes_mut(s: &mut [u8]) -> Result<&mut Self, Error> {
        TryFrom::try_from(s)
    }

    /// Returns a string slice.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    ///
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn as_str(&self) -> &str {
        unsafe {
            // This is safe because the `SecfracDigitsStr` ensures that the
            // underlying bytes are ASCII string.
            debug_assert_safe_version_ok!(str::from_utf8(&self.0));
            str::from_utf8_unchecked(&self.0)
        }
    }

    /// Returns a byte slice.
    ///
    /// If you want to use indexed access, prefer [`as_bytes_fixed_len`].
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    ///
    /// assert_eq!(datetime.as_bytes(), b"2001-06-17T12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    ///
    /// [`as_bytes_fixed_len`]: #method.as_bytes_fixed_len
    #[inline]
    #[must_use]
    pub fn as_bytes(&self) -> &[u8] {
        &self.0
    }

    /// Decomposes the string into `&FullDateStr` and `&FullTimeStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let (date, time) = datetime.decompose();
    /// assert_eq!(date.as_str(), "2001-06-17");
    /// assert_eq!(time.as_str(), "12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn decompose(&self) -> (&FullDateStr, &FullTimeStr) {
        let date = unsafe {
            // This is safe because `DATE_RANGE` fits inside the string, and a
            // `date-time` string has a `full-date` followed by 'T' and `full-time`.
            debug_assert_safe_version_ok!(<FullDateStr>::from_bytes(&self.0[DATE_RANGE]));
            FullDateStr::from_bytes_maybe_unchecked(self.0.get_unchecked(DATE_RANGE))
        };
        let time = unsafe {
            // This is safe because `TIME_RANGE` fits inside the string, and a
            // `date-time` string has a `full-time` suffix following `full-date`
            // and 'T'.
            debug_assert_safe_version_ok!(<FullTimeStr>::from_bytes(&self.0[TIME_RANGE]));
            FullTimeStr::from_bytes_maybe_unchecked(self.0.get_unchecked(TIME_RANGE))
        };

        (date, time)
    }

    /// Decomposes the string into `&mut FullDateStr` and `&mut FullTimeStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// use datetime_string::common::TimeOffsetSign;
    ///
    /// let mut buf = "2001-06-17T12:34:56.7890-23:12".to_owned();
    /// let datetime = DateTimeStr::from_mut_str(&mut buf)?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let (date, time) = datetime.decompose_mut();
    /// assert_eq!(date.as_str(), "2001-06-17");
    /// assert_eq!(time.as_str(), "12:34:56.7890-23:12");
    ///
    /// date.set_year(1999)?;
    /// time.partial_time_mut().secfrac_mut().unwrap().digits_mut().fill_with_zero();
    /// assert_eq!(datetime.as_str(), "1999-06-17T12:34:56.0000-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn decompose_mut(&mut self) -> (&mut FullDateStr, &mut FullTimeStr) {
        debug_assert_ok!(<FullDateStr>::from_bytes(&self.0[..T_POS]));
        debug_assert_ok!(<FullTimeStr>::from_bytes(&self.0[(T_POS + 1)..]));

        unsafe {
            let (date, t_time) = self.0.split_at_mut(T_POS);
            // Note that `t_time` contains the separator "T" as a prefix.
            let time = t_time.get_unchecked_mut(1..);

            // This is safe because a `date-time` string has a `full-date`
            // followed by 'T' and `full-time`, and `FullDateStr` ensures that
            // the underlying bytes are ASCII string after modification.
            let date = FullDateStr::from_bytes_maybe_unchecked_mut(date);
            // This is safe because a `date-time` string has a `full-time`
            // suffix following `full-date` and 'T', and `FullTimeStr` ensures
            // that the underlying bytes are ASCII string after modification.
            let time = FullTimeStr::from_bytes_maybe_unchecked_mut(time);

            (date, time)
        }
    }

    /// Returns a `&FullDateStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let date = datetime.date();
    /// assert_eq!(date.as_str(), "2001-06-17");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn date(&self) -> &FullDateStr {
        unsafe {
            debug_assert_safe_version_ok!(FullDateStr::from_bytes(&self.0[DATE_RANGE]));
            // This is safe because the range is valid for the shortest possible string.
            let s = self.0.get_unchecked(DATE_RANGE);
            // This is safe because a `date-time` string has a `full-date` before "T".
            FullDateStr::from_bytes_maybe_unchecked(s)
        }
    }

    /// Returns a `&mut FullDateStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let mut buf = "2001-06-17T12:34:56.7890-23:12".to_owned();
    /// let datetime = DateTimeStr::from_mut_str(&mut buf)?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let date = datetime.date_mut();
    /// assert_eq!(date.as_str(), "2001-06-17");
    ///
    /// date.set_year(1999)?;
    /// assert_eq!(datetime.as_str(), "1999-06-17T12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn date_mut(&mut self) -> &mut FullDateStr {
        unsafe {
            debug_assert_ok!(FullDateStr::from_bytes(&self.0[DATE_RANGE]));
            // This is safe because the range is valid for the shortest possible
            // string, and `FullDateStr` ensures that the underlying bytes are
            // ASCII string after modification.
            let s = self.0.get_unchecked_mut(DATE_RANGE);
            // This is safe because a `date-time` string has a `partial-time` before "T".
            FullDateStr::from_bytes_maybe_unchecked_mut(s)
        }
    }

    /// Returns a `&FullTimeStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// let datetime = DateTimeStr::from_str("2001-06-17T12:34:56.7890-23:12")?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let time = datetime.time();
    /// assert_eq!(time.as_str(), "12:34:56.7890-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn time(&self) -> &FullTimeStr {
        unsafe {
            debug_assert_safe_version_ok!(FullTimeStr::from_bytes(&self.0[TIME_RANGE]));
            // This is safe because the range is valid for the shortest possible string.
            let s = self.0.get_unchecked(TIME_RANGE);
            // This is safe because a `date-time` string has a `time-offset` right after "T".
            FullTimeStr::from_bytes_maybe_unchecked(s)
        }
    }

    /// Returns a `&mut FullTimeStr`.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// use datetime_string::common::TimeOffsetSign;
    ///
    /// let mut buf = "2001-06-17T12:34:56.7890-23:12".to_owned();
    /// let datetime = DateTimeStr::from_mut_str(&mut buf)?;
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.7890-23:12");
    ///
    /// let time = datetime.time_mut();
    /// assert_eq!(time.as_str(), "12:34:56.7890-23:12");
    ///
    /// time.partial_time_mut().secfrac_mut().unwrap().digits_mut().fill_with_zero();
    /// assert_eq!(datetime.as_str(), "2001-06-17T12:34:56.0000-23:12");
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[inline]
    #[must_use]
    pub fn time_mut(&mut self) -> &mut FullTimeStr {
        unsafe {
            debug_assert_ok!(FullTimeStr::from_bytes(&self.0[TIME_RANGE]));
            // This is safe because the range is valid for the shortest possible
            // string, and `FullTimeStr` ensures that the underlying bytes are
            // ASCII string after modification.
            let s = self.0.get_unchecked_mut(TIME_RANGE);
            // This is safe because a `date-time` string has a `time-offset` right after "T".
            FullTimeStr::from_bytes_maybe_unchecked_mut(s)
        }
    }

    /// Converts the time to [`chrono::DateTime<FixedOffset>`][`chrono04::DateTime`] of chrono v0.4.
    ///
    /// Note that this truncates subnanosecond secfrac.
    ///
    /// Enabled by `chrono04` feature.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// use chrono04::{FixedOffset, TimeZone};
    ///
    /// let datetime = DateTimeStr::from_str("1999-12-31T12:34:56.01234567899999+09:00")?;
    /// assert_eq!(
    ///     datetime.to_chrono_date_time(),
    ///     FixedOffset::east(9 * 60 * 60).ymd(1999, 12, 31).and_hms_nano(12, 34, 56, 12_345_678)
    /// );
    ///
    /// let leap = DateTimeStr::from_str("2001-12-31T23:59:60.876543210999-00:00")?;
    /// assert_eq!(
    ///     leap.to_chrono_date_time(),
    ///     FixedOffset::east(0).ymd(2001, 12, 31).and_hms_nano(23, 59, 59, 1_876_543_210)
    /// );
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[cfg(feature = "chrono04")]
    #[cfg_attr(docsrs, doc(cfg(feature = "chrono04")))]
    #[deprecated(since = "0.2.2", note = "renamed to `to_chrono04_date_time`")]
    #[inline]
    #[must_use]
    pub fn to_chrono_date_time(&self) -> chrono04::DateTime<chrono04::FixedOffset> {
        self.to_chrono04_date_time()
    }

    /// Converts the time to [`chrono::DateTime<FixedOffset>`][`chrono04::DateTime`] of chrono v0.4.
    ///
    /// Note that this truncates subnanosecond secfrac.
    ///
    /// Enabled by `chrono04` feature.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// use chrono04::{FixedOffset, TimeZone};
    ///
    /// let datetime = DateTimeStr::from_str("1999-12-31T12:34:56.01234567899999+09:00")?;
    /// assert_eq!(
    ///     datetime.to_chrono04_date_time(),
    ///     FixedOffset::east(9 * 60 * 60).ymd(1999, 12, 31).and_hms_nano(12, 34, 56, 12_345_678)
    /// );
    ///
    /// let leap = DateTimeStr::from_str("2001-12-31T23:59:60.876543210999-00:00")?;
    /// assert_eq!(
    ///     leap.to_chrono04_date_time(),
    ///     FixedOffset::east(0).ymd(2001, 12, 31).and_hms_nano(23, 59, 59, 1_876_543_210)
    /// );
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[cfg(feature = "chrono04")]
    #[cfg_attr(docsrs, doc(cfg(feature = "chrono04")))]
    pub fn to_chrono04_date_time(&self) -> chrono04::DateTime<chrono04::FixedOffset> {
        use chrono04::TimeZone;

        let (date_s, time_s) = self.decompose();
        let date: chrono04::NaiveDate = date_s.into();
        let time: chrono04::NaiveTime = time_s.partial_time().to_chrono04_naive_time();
        let offset: chrono04::FixedOffset = time_s.offset().into();

        offset
            .from_local_datetime(&date.and_time(time))
            .single()
            .expect("Should never fail: fixed time offset is not affected by summer time")
    }

    /// Converts the time to [`time::OffsetDateTime`][`time03::OffsetDateTime`].
    ///
    /// Note that this truncates subnanosecond secfrac.
    ///
    /// Leap seconds are ignored and the previous second is used, since `time`
    /// v0.3 does not support leap seconds. Subseconds part is preserved even
    /// in such cases.
    ///
    /// Enabled by `time03` feature.
    ///
    /// # Examples
    ///
    /// ```
    /// # use datetime_string::rfc3339::DateTimeStr;
    /// use time03::{Date, Month, UtcOffset};
    ///
    /// let datetime = DateTimeStr::from_str("1999-12-31T12:34:56.01234567899999+09:00")?;
    /// assert_eq!(
    ///     datetime.to_time03_date_time(),
    ///     Date::from_calendar_date(1999, Month::December, 31)
    ///         .expect("valid date")
    ///         .with_hms_nano(12, 34, 56, 012_345_678)
    ///         .expect("valid time")
    ///         .assume_offset(UtcOffset::from_hms(9, 0, 0).expect("valid offset"))
    /// );
    ///
    /// let leap = DateTimeStr::from_str("2001-12-31T23:59:60.876543210999-00:00")?;
    /// assert_eq!(
    ///     leap.to_time03_date_time(),
    ///     Date::from_calendar_date(2001, Month::December, 31)
    ///         .expect("valid date")
    ///         .with_hms_nano(23, 59, 59, 876_543_210)
    ///         .expect("valid time")
    ///         .assume_utc()
    /// );
    /// # Ok::<_, datetime_string::Error>(())
    /// ```
    #[cfg(feature = "time03")]
    #[cfg_attr(docsrs, doc(cfg(feature = "time03")))]
    pub fn to_time03_date_time(&self) -> time03::OffsetDateTime {
        let (date_s, time_s) = self.decompose();
        let date: time03::Date = date_s.into();
        let time: time03::Time = time_s.partial_time().to_time03_time();
        let offset: time03::UtcOffset = time_s.offset().into();

        date.with_time(time).assume_offset(offset)
    }
}

impl AsRef<[u8]> for DateTimeStr {
    #[inline]
    fn as_ref(&self) -> &[u8] {
        &self.0
    }
}

impl AsRef<str> for DateTimeStr {
    #[inline]
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl AsRef<DateTimeStr> for DateTimeStr {
    #[inline]
    fn as_ref(&self) -> &DateTimeStr {
        self
    }
}

impl AsMut<DateTimeStr> for DateTimeStr {
    #[inline]
    fn as_mut(&mut self) -> &mut DateTimeStr {
        self
    }
}

impl<'a> From<&'a DateTimeStr> for &'a str {
    #[inline]
    fn from(v: &'a DateTimeStr) -> Self {
        v.as_str()
    }
}

impl<'a> TryFrom<&'a [u8]> for &'a DateTimeStr {
    type Error = Error;

    #[inline]
    fn try_from(v: &'a [u8]) -> Result<Self, Self::Error> {
        validate_bytes(v)?;
        Ok(unsafe {
            // This is safe because a valid `date-time` string is also an ASCII string.
            DateTimeStr::from_bytes_maybe_unchecked(v)
        })
    }
}

impl<'a> TryFrom<&'a mut [u8]> for &'a mut DateTimeStr {
    type Error = Error;

    #[inline]
    fn try_from(v: &'a mut [u8]) -> Result<Self, Self::Error> {
        validate_bytes(v)?;
        Ok(unsafe {
            // This is safe because a valid `date-time` string is also an ASCII string.
            DateTimeStr::from_bytes_maybe_unchecked_mut(v)
        })
    }
}

impl<'a> TryFrom<&'a str> for &'a DateTimeStr {
    type Error = Error;

    #[inline]
    fn try_from(v: &'a str) -> Result<Self, Self::Error> {
        Self::try_from(v.as_bytes())
    }
}

impl<'a> TryFrom<&'a mut str> for &'a mut DateTimeStr {
    type Error = Error;

    #[inline]
    fn try_from(v: &'a mut str) -> Result<Self, Self::Error> {
        validate_bytes(v.as_bytes())?;
        Ok(unsafe {
            // This is safe because the string is already validated and
            // `DateTimeStr` ensures that the underlying bytes are ASCII
            // string after modification.
            DateTimeStr::from_str_maybe_unchecked_mut(v)
        })
    }
}

impl fmt::Display for DateTimeStr {
    #[inline]
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        self.as_str().fmt(f)
    }
}

impl ops::Deref for DateTimeStr {
    type Target = str;

    #[inline]
    fn deref(&self) -> &Self::Target {
        self.as_str()
    }
}

impl_cmp_symmetric!(str, DateTimeStr, &DateTimeStr);
impl_cmp_symmetric!([u8], DateTimeStr, [u8]);
impl_cmp_symmetric!([u8], DateTimeStr, &[u8]);
impl_cmp_symmetric!([u8], &DateTimeStr, [u8]);
impl_cmp_symmetric!(str, DateTimeStr, str);
impl_cmp_symmetric!(str, DateTimeStr, &str);
impl_cmp_symmetric!(str, &DateTimeStr, str);

#[cfg(feature = "serde")]
#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
impl Serialize for DateTimeStr {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.serialize_str(self.as_str())
    }
}

/// Items for serde support.
#[cfg(feature = "serde")]
mod serde_ {
    use super::*;

    use serde::de::{Deserialize, Deserializer, Visitor};

    /// Visitor for `&DateTimeStr`.
    struct StrVisitor;

    impl<'de> Visitor<'de> for StrVisitor {
        type Value = &'de DateTimeStr;

        #[inline]
        fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.write_str("RFC 3339 date-time string")
        }

        #[inline]
        fn visit_borrowed_bytes<E>(self, v: &'de [u8]) -> Result<Self::Value, E>
        where
            E: serde::de::Error,
        {
            Self::Value::try_from(v).map_err(E::custom)
        }

        #[inline]
        fn visit_borrowed_str<E>(self, v: &'de str) -> Result<Self::Value, E>
        where
            E: serde::de::Error,
        {
            Self::Value::try_from(v).map_err(E::custom)
        }
    }

    impl<'de> Deserialize<'de> for &'de DateTimeStr {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            deserializer.deserialize_any(StrVisitor)
        }
    }
}

#[cfg(test)]
mod tests {
    #[cfg(feature = "serde")]
    use super::*;

    use super::validate_bytes as s_validate;

    #[cfg(feature = "serde")]
    use serde_test::{assert_de_tokens, assert_tokens, Token};

    #[test]
    fn validate_bytes() {
        assert!(s_validate(b"2001-06-17T12:34:56Z").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56-00:00").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56-12:30").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56-23:59").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56+00:00").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56+12:30").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56+23:59").is_ok());

        assert!(s_validate(b"2001-06-17T00:00:00-00:00").is_ok());
        assert!(s_validate(b"2001-06-17T23:59:59-00:00").is_ok());

        assert!(s_validate(b"2001-06-17T12:34:56.7890Z").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56.7890-00:00").is_ok());
        assert!(s_validate(b"2001-06-17T12:34:56.7890+00:00").is_ok());
    }

    #[cfg(feature = "serde")]
    #[test]
    fn ser_de_str() {
        let raw: &'static str = "2001-06-17T12:34:56.7890-23:12";
        assert_tokens(
            &DateTimeStr::from_str(raw).unwrap(),
            &[Token::BorrowedStr(raw)],
        );
    }

    #[cfg(feature = "serde")]
    #[test]
    fn de_bytes_slice() {
        let raw: &'static [u8] = b"2001-06-17T12:34:56.7890-23:12";
        assert_de_tokens(
            &DateTimeStr::from_bytes(raw).unwrap(),
            &[Token::BorrowedBytes(raw)],
        );
    }
}