本文簡要介紹rust語言中 std::time::Instant.checked_duration_since
的用法。
用法
pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration>
返回從另一時刻到這一時刻所經過的時間量,如果該時刻晚於這一時刻,則返回無。
例子
use std::time::{Duration, Instant};
use std::thread::sleep;
let now = Instant::now();
sleep(Duration::new(1, 0));
let new_now = Instant::now();
println!("{:?}", new_now.checked_duration_since(now));
println!("{:?}", now.checked_duration_since(new_now)); // None
相關用法
- Rust Instant.now用法及代碼示例
- Rust Instant.saturating_duration_since用法及代碼示例
- Rust Instant.duration_since用法及代碼示例
- Rust Instant.elapsed用法及代碼示例
- Rust Instant用法及代碼示例
- Rust IntoKeys用法及代碼示例
- Rust IntoIter.as_mut_slice用法及代碼示例
- Rust Infallible用法及代碼示例
- Rust IntErrorKind用法及代碼示例
- Rust Intersection用法及代碼示例
- Rust IntoInnerError.error用法及代碼示例
- Rust Into用法及代碼示例
- Rust Incoming用法及代碼示例
- Rust IntoIter.new用法及代碼示例
- Rust Index用法及代碼示例
- Rust IntoValues用法及代碼示例
- Rust IntoIterator.into_iter用法及代碼示例
- Rust IntoInnerError.into_inner用法及代碼示例
- Rust IntoInnerError.into_parts用法及代碼示例
- Rust IntoIter.as_slice用法及代碼示例
- Rust IntoIterator用法及代碼示例
- Rust IntoIter用法及代碼示例
- Rust IntoRawFd.into_raw_fd用法及代碼示例
- Rust IntoInnerError.into_error用法及代碼示例
- Rust IntoInnerError用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::time::Instant.checked_duration_since。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。