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