1
2
3
4
5
use core::time::Duration;

pub trait SystemTime {
    fn now(&self) -> Duration;
}