pub trait Yielder: Send {
// Required method
fn yield_now(&mut self) -> impl Future<Output = ()> + Send;
}Expand description
A yielder can be used during compactions which are low priority.
Required Methods§
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.