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§
fn push(&self, task: Notified<T>)
fn push_batch<I>(&self, iter: I)
Object Safety§
This trait is not object safe.