1
2
3
4
5
6
7
use super::ms;

/// Interface for platform specific time.
pub trait PlatformTime {
    /// Call of this mthod will return the current time in milliseconds.
    fn millis() -> ms;
}