Files
tokio/tokio-timer/src/timer/now.rs
T

11 lines
250 B
Rust
Raw Normal View History

2018-03-28 22:26:47 -07:00
use std::time::Instant;
#[doc(hidden)]
#[deprecated(since = "0.2.4", note = "use clock::Now instead")]
2018-03-28 22:26:47 -07:00
pub trait Now {
/// Returns an instant corresponding to "now".
fn now(&mut self) -> Instant;
}
2019-05-14 10:27:36 -07:00
pub use crate::clock::Clock as SystemNow;