pub trait DurationTicks: Copy + Clone {
// Required method
fn to_ticks(&self) -> FreeRtosTickType;
}Required Methods§
Sourcefn to_ticks(&self) -> FreeRtosTickType
fn to_ticks(&self) -> FreeRtosTickType
Convert to ticks, the internal time measurement unit of FreeRTOS
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".