Module core::time 1.25.0[−][src]
Expand description
时间量化。
Example:
use std::time::Duration; let five_seconds = Duration::new(5, 0); // 这两个声明是等效的 assert_eq!(Duration::new(5, 0), Duration::from_secs(5));Run
Structs
FromSecsError | Experimental 将秒的浮点值转换为 |
Duration |
|