Skip to main content

Yielder

Trait Yielder 

Source
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§

Source

fn yield_now(&mut self) -> impl Future<Output = ()> + Send

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.

Implementors§