1use super::ms; 2 3/// Interface for platform specific millis timer implementation. 4pub trait PlatformMillis { 5 /// Call of this mthod will return the current time in milliseconds. 6 fn millis() -> ms; 7}