Temporal quantification.
Example:
use std::time::Duration; let five_seconds = Duration::new(5, 0); // both declarations are equivalent assert_eq!(Duration::new(5, 0), Duration::from_secs(5));
Duration |
A |
Instant |
A measurement of a monotonically nondecreasing clock. Opaque and useful only with |
SystemTime |
A measurement of the system clock, useful for talking to external entities like the file system or other processes. |
SystemTimeError |
An error returned from the |
UNIX_EPOCH |
An anchor in time which can be used to create new |
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/time/index.html