tokio::runtime::scheduler::multi_thread::overflow

Trait Overflow

Source
pub(crate) trait Overflow<T: 'static> {
    // Required methods
    fn push(&self, task: Notified<T>);
    fn push_batch<I>(&self, iter: I)
       where I: Iterator<Item = Notified<T>>;
}

Required Methods§

Source

fn push(&self, task: Notified<T>)

Source

fn push_batch<I>(&self, iter: I)
where I: Iterator<Item = Notified<T>>,

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§