trait HintAssignable {
// Required methods
fn hint_tid(&self) -> Option<u32>;
fn hint_time_ns(&self) -> Option<u64>;
fn set_hint(&mut self, hint: u64);
}Required Methods§
fn hint_tid(&self) -> Option<u32>
fn hint_time_ns(&self) -> Option<u64>
fn set_hint(&mut self, hint: u64)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".