pub trait RcRefCellCallbackExt<T> {
// Required methods
fn strong_await_queue<F, C>(&self, future: F, callback: C)
where F: Future + 'static,
C: FnMut(&mut T, F::Output) + 'static;
fn strong_queue<C>(&self, callback: C)
where C: FnMut(&mut T) + 'static;
}Required Methods§
fn strong_await_queue<F, C>(&self, future: F, callback: C)
fn strong_queue<C>(&self, callback: C)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".