timer_kit/instant_impl/
std.rs

1use std::time::Instant as StdInstant;
2
3impl crate::Instant for StdInstant {
4    fn now() -> Self {
5        StdInstant::now()
6    }
7}