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)
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.