pub trait PlatformTime {
    // Required method
    fn millis() -> ms;
}
Expand description

Interface for platform specific time.

Required Methods§

source

fn millis() -> ms

Call of this mthod will return the current time in milliseconds.

Object Safety§

This trait is not object safe.

Implementors§