pub trait HrTimerMode {
type Clock: ClockSource;
type Expires: HrTimerExpires;
const C_MODE: hrtimer_mode;
}
Expand description
Operational mode of HrTimer
.
Required Associated Constants§
Required Associated Types§
Sourcetype Clock: ClockSource
type Clock: ClockSource
Type representing the clock source.
Sourcetype Expires: HrTimerExpires
type Expires: HrTimerExpires
Type representing the expiration specification (absolute or relative time).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.