We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348d684 commit c0baa6fCopy full SHA for c0baa6f
library/std/src/time.rs
@@ -536,6 +536,12 @@ impl SystemTime {
536
/// This value differs a lot between platforms, but it is always the case
537
/// that any positive subtraction from [`SystemTime::MIN`] will fail.
538
///
539
+ /// Depending on the platform, this may be either less than or equal to
540
+ /// [`SystemTime::UNIX_EPOCH`], depending on whether the operating system
541
+ /// supports the representation of timestamps before the Unix epoch or not.
542
+ /// However, it is always guaranteed that a [`SystemTime::UNIX_EPOCH`] fits
543
+ /// between a [`SystemTime::MIN`] and [`SystemTime::MAX`].
544
+ ///
545
/// # Examples
546
547
/// ```
0 commit comments