Trait kernel::devices::clock::ClockDevice
source · trait ClockDevice: Send + Sync {
// Required methods
fn name(&self) -> &'static str;
fn get_time(&self) -> ClockTime;
fn granularity(&self) -> u64;
fn require_calibration(&self) -> bool;
// Provided method
fn rating(&self) -> u64 { ... }
}
Required Methods§
sourcefn get_time(&self) -> ClockTime
fn get_time(&self) -> ClockTime
Returns the current time of the device with no relation to anything The system will use consecutive calls to determine the time
sourcefn granularity(&self) -> u64
fn granularity(&self) -> u64
Returns the granularity of the device in nanoseconds, i.e. the smallest time unit it can measure Must be at least 1
sourcefn require_calibration(&self) -> bool
fn require_calibration(&self) -> bool
Returns true if the device needs to be calibration i.e. it doesn’t count time correctly