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
//! RFC 3339 [`time-offset`] string types. //! //! [`time-offset`]: https://tools.ietf.org/html/rfc3339#section-5.6 #[cfg(feature = "alloc")] mod owned; use core::{cmp::Ordering, convert::TryFrom, fmt, ops, str}; use crate::{ common::TimeOffsetSign, error::{ComponentKind, Error, ErrorKind}, }; use super::TimeNumOffsetStr; #[cfg(feature = "alloc")] pub use self::owned::TimeOffsetString; /// Validates the given string as an RFC 3339 [`time-offset`]. /// /// [`time-offset`]: https://tools.ietf.org/html/rfc3339#section-5.6 fn validate_bytes(s: &[u8]) -> Result<(), Error> { match s.len().cmp(&1) { Ordering::Less => Err(ErrorKind::TooShort.into()), Ordering::Equal => { if s[0] == b'Z' { Ok(()) } else { Err(ErrorKind::InvalidComponentType(ComponentKind::Offset).into()) } } Ordering::Greater => TimeNumOffsetStr::from_bytes(s).map(|_| ()), } } /// String slice for a time in RFC 3339 [`time-offset`] format, such as `+09:00`, `-00:00`, and `Z`. /// /// [`time-offset`]: 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(clippy::unknown_clippy_lints, clippy::derive_ord_xor_partial_ord)] pub struct TimeOffsetStr([u8]); impl TimeOffsetStr { /// Creates a `&TimeOffsetStr` 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] pub(crate) 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 TimeOffsetStr` 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] pub(crate) 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 TimeOffsetStr` 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 ``TimeOffsetStr` ensures that the underlying // bytes are ASCII string after modification. Self::from_bytes_maybe_unchecked_mut(s.as_bytes_mut()) } /// Creates a new `&TimeOffsetStr` from a string slice. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let time = TimeOffsetStr::from_str("-12:34")?; /// assert_eq!(time.as_str(), "-12:34"); /// /// assert!(TimeOffsetStr::from_str("Z").is_ok()); /// assert!(TimeOffsetStr::from_str("+00:00").is_ok()); /// assert!(TimeOffsetStr::from_str("+23:59").is_ok()); /// assert!(TimeOffsetStr::from_str("-00:00").is_ok()); /// assert!(TimeOffsetStr::from_str("-23:59").is_ok()); /// /// assert!(TimeOffsetStr::from_str("z").is_err(), "lowercase Z is not allowed"); /// assert!(TimeOffsetStr::from_str("a").is_err(), "Invalid name"); /// assert!(TimeOffsetStr::from_str("+24:00").is_err(), "Invalid hour"); /// assert!(TimeOffsetStr::from_str("+00:60").is_err(), "Invalid minute"); /// assert!(TimeOffsetStr::from_str("-24:00").is_err(), "Invalid hour"); /// assert!(TimeOffsetStr::from_str("-00:60").is_err(), "Invalid minute"); /// assert!(TimeOffsetStr::from_str("?00:00").is_err(), "Invalid sign"); /// assert!(TimeOffsetStr::from_str("00:00").is_err(), "Sign is missing"); /// # 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 TimeOffsetStr` from a mutable string slice. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// use datetime_string::common::TimeOffsetSign; /// /// let mut buf = "-12:34".to_owned(); /// let offset = TimeOffsetStr::from_mut_str(&mut buf)?; /// assert_eq!(offset.as_str(), "-12:34"); /// /// offset.to_numoffset_mut().unwrap().set_sign(TimeOffsetSign::Positive); /// assert_eq!(offset.as_str(), "+12:34"); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] pub fn from_mut_str(s: &mut str) -> Result<&mut Self, Error> { TryFrom::try_from(s) } /// Creates a new `&TimeOffsetStr` from a byte slice. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let time = TimeOffsetStr::from_bytes(b"-12:34")?; /// assert_eq!(time.as_str(), "-12:34"); /// /// assert!(TimeOffsetStr::from_bytes(b"Z").is_ok()); /// assert!(TimeOffsetStr::from_bytes(b"+00:00").is_ok()); /// assert!(TimeOffsetStr::from_bytes(b"+23:59").is_ok()); /// assert!(TimeOffsetStr::from_bytes(b"-00:00").is_ok()); /// assert!(TimeOffsetStr::from_bytes(b"-23:59").is_ok()); /// /// assert!(TimeOffsetStr::from_bytes(b"z").is_err(), "lowercase Z is not allowed"); /// assert!(TimeOffsetStr::from_bytes(b"a").is_err(), "Invalid name"); /// assert!(TimeOffsetStr::from_bytes(b"+24:00").is_err(), "Invalid hour"); /// assert!(TimeOffsetStr::from_bytes(b"+00:60").is_err(), "Invalid minute"); /// assert!(TimeOffsetStr::from_bytes(b"-24:00").is_err(), "Invalid hour"); /// assert!(TimeOffsetStr::from_bytes(b"-00:60").is_err(), "Invalid minute"); /// assert!(TimeOffsetStr::from_bytes(b"?00:00").is_err(), "Invalid sign"); /// assert!(TimeOffsetStr::from_bytes(b"00:00").is_err(), "Sign is missing"); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] pub fn from_bytes(s: &[u8]) -> Result<&Self, Error> { TryFrom::try_from(s) } /// Creates a new `&mut TimeOffsetStr` from a mutable byte slice. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// use datetime_string::common::TimeOffsetSign; /// /// let mut buf: [u8; 6] = *b"-12:34"; /// let offset = TimeOffsetStr::from_bytes_mut(&mut buf)?; /// assert_eq!(offset.as_str(), "-12:34"); /// /// offset.to_numoffset_mut().unwrap().set_sign(TimeOffsetSign::Positive); /// assert_eq!(offset.as_str(), "+12:34"); /// # 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::TimeOffsetStr; /// let time = TimeOffsetStr::from_str("-12:34")?; /// /// assert_eq!(time.as_str(), "-12:34"); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] #[must_use] pub fn as_str(&self) -> &str { unsafe { // This is safe because the `TimeOffsetStr` 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::TimeOffsetStr; /// let time = TimeOffsetStr::from_str("-12:34")?; /// /// assert_eq!(time.as_bytes(), b"-12:34"); /// # Ok::<_, datetime_string::Error>(()) /// ``` /// /// [`as_bytes_fixed_len`]: #method.as_bytes_fixed_len #[inline] #[must_use] pub fn as_bytes(&self) -> &[u8] { &self.0 } /// Returns a sign if available. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// use datetime_string::common::TimeOffsetSign; /// /// let positive = TimeOffsetStr::from_str("+12:34")?; /// assert_eq!(positive.sign(), Some(TimeOffsetSign::Positive)); /// /// let negative = TimeOffsetStr::from_str("-00:00")?; /// assert_eq!(negative.sign(), Some(TimeOffsetSign::Negative)); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.sign(), None); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] pub fn sign(&self) -> Option<TimeOffsetSign> { match self.0[0] { b'Z' => None, b'+' => Some(TimeOffsetSign::Positive), v => { debug_assert_eq!(v, b'-'); Some(TimeOffsetSign::Negative) } } } /// Returns a `&TimeNumOffsetStr` if the time offset is not `Z`. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let numoffset = TimeOffsetStr::from_str("+12:34")?; /// assert_eq!(numoffset.to_numoffset().unwrap().hour_abs(), 12); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.to_numoffset(), None); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] pub fn to_numoffset(&self) -> Option<&TimeNumOffsetStr> { if self.len() == 1 { return None; } Some(unsafe { // This is safe because `time-offset` is "Z" or `time-numoffset`, // and the string is already checked that not being "Z". debug_assert_safe_version_ok!(TimeNumOffsetStr::from_bytes(&self.0)); TimeNumOffsetStr::from_bytes_maybe_unchecked(&self.0) }) } /// Returns a `&mut TimeNumOffsetStr` if the time offset is not `Z`. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let mut buf_num = "+12:34".to_owned(); /// let numoffset = TimeOffsetStr::from_mut_str(&mut buf_num)?; /// numoffset.to_numoffset_mut().unwrap().set_hour_abs(23); /// assert_eq!(numoffset.as_str(), "+23:34"); /// assert_eq!(buf_num, "+23:34"); /// /// let mut buf_zulu = "Z".to_owned(); /// let zulu = TimeOffsetStr::from_mut_str(&mut buf_zulu)?; /// assert_eq!(zulu.to_numoffset_mut(), None); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] // This mimics API of `std::path::Path::to_str(&self) -> Option<&str>`, and // `to_*` seems more appropriate than `as_*` (because this method does not // return a reference directly). #[allow(clippy::wrong_self_convention)] pub fn to_numoffset_mut(&mut self) -> Option<&mut TimeNumOffsetStr> { if self.len() == 1 { return None; } Some(unsafe { // This is safe because `time-offset` is "Z" or `time-numoffset`, // the string is already checked that not being "Z", and // `TimeNumOffsetStr` ensures that the underlying bytes are ASCII // string after modification. debug_assert_ok!(TimeNumOffsetStr::from_bytes(&self.0)); TimeNumOffsetStr::from_bytes_maybe_unchecked_mut(&mut self.0) }) } /// Returns the absolute hour as an integer. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let offset = TimeOffsetStr::from_str("-12:34")?; /// assert_eq!(offset.hour_abs(), 12); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.hour_abs(), 0); /// /// let negative0 = TimeOffsetStr::from_str("-00:00")?; /// assert_eq!(negative0.hour_abs(), 0); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] #[must_use] pub fn hour_abs(&self) -> u8 { self.to_numoffset().map_or(0, |v| v.hour_abs()) } /// Returns the signed hour as an integer. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let offset = TimeOffsetStr::from_str("-12:34")?; /// assert_eq!(offset.hour_signed(), -12); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.hour_signed(), 0); /// # Ok::<_, datetime_string::Error>(()) /// ``` /// /// Note that both `+00` and `-00` are treaded as the same 0. /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let positive = TimeOffsetStr::from_str("+00:59")?; /// assert_eq!(positive.hour_signed(), 0); /// /// let negative = TimeOffsetStr::from_str("-00:59")?; /// assert_eq!(negative.hour_signed(), 0); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] #[must_use] pub fn hour_signed(&self) -> i8 { self.to_numoffset().map_or(0, |v| v.hour_signed()) } /// Returns the minute as an integer. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let offset = TimeOffsetStr::from_str("-12:34")?; /// assert_eq!(offset.minute(), 34); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.minute(), 0); /// # Ok::<_, datetime_string::Error>(()) /// ``` #[inline] #[must_use] pub fn minute(&self) -> u8 { self.to_numoffset().map_or(0, |v| v.minute()) } /// Returns the time offset in minutes. /// /// Note that both `+00:00` and `-00:00` is considered as 0 minutes offset. /// RFC 3339 defines semantics of `-00:00` as "unknown local offset". /// If your application should be aware of that semantics, use /// [`is_unknown_local_offset`] method or [`sign`] method to distinguish them. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// let offset = TimeOffsetStr::from_str("-12:34")?; /// assert_eq!(offset.in_minutes(), -(12 * 60 + 34)); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert_eq!(zulu.in_minutes(), 0); /// # Ok::<_, datetime_string::Error>(()) /// ``` /// /// `0` is returned for both `+00:00` and `-00:00`. /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// use datetime_string::common::TimeOffsetSign; /// /// let positive0 = TimeOffsetStr::from_str("+00:00")?; /// assert_eq!(positive0.in_minutes(), 0); /// assert_eq!(positive0.sign(), Some(TimeOffsetSign::Positive)); /// assert!(!positive0.is_unknown_local_offset(), "0 minutes time offset"); /// /// let negative0 = TimeOffsetStr::from_str("-00:00")?; /// assert_eq!(negative0.in_minutes(), 0); /// assert_eq!(negative0.sign(), Some(TimeOffsetSign::Negative)); /// assert!(negative0.is_unknown_local_offset(), "unknown local offset"); /// # Ok::<_, datetime_string::Error>(()) /// ``` /// /// [`is_unknown_local_offset`]: TimeOffsetStr::is_unknown_local_offset /// [`sign`]: TimeOffsetStr::sign #[inline] #[must_use] pub fn in_minutes(&self) -> i16 { self.to_numoffset().map_or(0, |v| v.in_minutes()) } /// Returns `true` if and only if the time offset means "unknown local offset" in RFC 3339. /// /// RFC 3339 defines `-00:00` as "unknown local offset". /// /// > If the time in UTC is known, but the offset to local time is unknown, /// > this can be represented with an offset of "-00:00". /// > This differs semantically from an offset of "Z" or "+00:00", which /// > imply that UTC is the preferred reference point for the specified /// > time. /// > /// > --- [RFC 3339, section 4.3. Unknown Local Offset Convention][rfc3339-4-3] /// /// This method returns `true` for `-00:00`. /// /// # Examples /// /// ``` /// # use datetime_string::rfc3339::TimeOffsetStr; /// use datetime_string::common::TimeOffsetSign; /// /// let positive0 = TimeOffsetStr::from_str("+00:00")?; /// assert!(!positive0.is_unknown_local_offset(), "0 minutes time offset"); /// /// let zulu = TimeOffsetStr::from_str("Z")?; /// assert!(!zulu.is_unknown_local_offset(), "UTC"); /// /// let negative0 = TimeOffsetStr::from_str("-00:00")?; /// assert!(negative0.is_unknown_local_offset(), "unknown local offset"); /// # Ok::<_, datetime_string::Error>(()) /// ``` /// /// [rfc3339-4-3]: https://tools.ietf.org/html/rfc3339#section-4.3 #[inline] #[must_use] pub fn is_unknown_local_offset(&self) -> bool { &self.0 == b"-00:00" } } impl AsRef<[u8]> for TimeOffsetStr { #[inline] fn as_ref(&self) -> &[u8] { &self.0 } } impl AsRef<str> for TimeOffsetStr { #[inline] fn as_ref(&self) -> &str { self.as_str() } } impl AsRef<TimeOffsetStr> for TimeOffsetStr { #[inline] fn as_ref(&self) -> &TimeOffsetStr { self } } impl AsMut<TimeOffsetStr> for TimeOffsetStr { #[inline] fn as_mut(&mut self) -> &mut TimeOffsetStr { self } } impl<'a> From<&'a TimeOffsetStr> for &'a str { #[inline] fn from(v: &'a TimeOffsetStr) -> Self { v.as_str() } } #[cfg(feature = "chrono04")] impl From<&TimeOffsetStr> for chrono04::FixedOffset { #[inline] fn from(v: &TimeOffsetStr) -> Self { Self::east(i32::from(v.in_minutes()) * 60) } } impl<'a> TryFrom<&'a [u8]> for &'a TimeOffsetStr { 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 `time-offset` string is also an ASCII string. TimeOffsetStr::from_bytes_maybe_unchecked(v) }) } } impl<'a> TryFrom<&'a mut [u8]> for &'a mut TimeOffsetStr { 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 `time-offset` string is also an ASCII string. TimeOffsetStr::from_bytes_maybe_unchecked_mut(v) }) } } impl<'a> TryFrom<&'a str> for &'a TimeOffsetStr { 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 TimeOffsetStr { 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 a valid `time-offset` string is also an ASCII string. TimeOffsetStr::from_str_maybe_unchecked_mut(v) }) } } impl fmt::Display for TimeOffsetStr { #[inline] fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { self.as_str().fmt(f) } } impl ops::Deref for TimeOffsetStr { type Target = str; #[inline] fn deref(&self) -> &Self::Target { self.as_str() } } #[cfg(feature = "serde")] impl serde::Serialize for TimeOffsetStr { fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: serde::Serializer, { serializer.serialize_str(self.as_str()) } } impl_cmp_symmetric!(str, TimeOffsetStr, &TimeOffsetStr); impl_cmp_symmetric!([u8], TimeOffsetStr, [u8]); impl_cmp_symmetric!([u8], TimeOffsetStr, &[u8]); impl_cmp_symmetric!([u8], &TimeOffsetStr, [u8]); impl_cmp_symmetric!(str, TimeOffsetStr, str); impl_cmp_symmetric!(str, TimeOffsetStr, &str); impl_cmp_symmetric!(str, &TimeOffsetStr, str); /// Items for serde support. #[cfg(feature = "serde")] mod serde_ { use super::*; use serde::de::{Deserialize, Deserializer, Visitor}; /// Visitor for `&TimeOffsetStr`. struct StrVisitor; impl<'de> Visitor<'de> for StrVisitor { type Value = &'de TimeOffsetStr; #[inline] fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.write_str("RFC 3339 time-offset 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 TimeOffsetStr { fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer<'de>, { deserializer.deserialize_any(StrVisitor) } } } #[cfg(test)] mod tests { 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"Z").is_ok()); assert!(s_validate(b"-00:00").is_ok()); assert!(s_validate(b"-12:30").is_ok()); assert!(s_validate(b"-23:59").is_ok()); assert!(s_validate(b"+00:00").is_ok()); assert!(s_validate(b"+12:30").is_ok()); assert!(s_validate(b"+23:59").is_ok()); assert!(TimeOffsetStr::from_str("z").is_err()); assert!(TimeOffsetStr::from_str("a").is_err()); assert!(TimeOffsetStr::from_str("+24:00").is_err()); assert!(TimeOffsetStr::from_str("+00:60").is_err()); assert!(TimeOffsetStr::from_str("-24:00").is_err()); assert!(TimeOffsetStr::from_str("-00:60").is_err()); assert!(TimeOffsetStr::from_str("?00:00").is_err()); assert!(TimeOffsetStr::from_str("00:00").is_err()); } #[cfg(feature = "serde")] #[test] fn ser_de_str() { let raw: &'static str = "-12:34"; assert_tokens( &TimeOffsetStr::from_str(raw).unwrap(), &[Token::BorrowedStr(raw)], ); } #[cfg(feature = "serde")] #[test] fn de_bytes_slice() { let raw: &'static [u8; 6] = b"-12:34"; assert_de_tokens( &TimeOffsetStr::from_bytes(raw).unwrap(), &[Token::BorrowedBytes(raw)], ); } }