1
2
3
4
5
6
7
use std::time::Instant as StdInstant;

impl crate::Instant for StdInstant {
    fn now() -> Self {
        StdInstant::now()
    }
}