pub(crate) trait TaskBox: Send { // Required methods fn name(&self) -> &'static str; fn run_box(self: Box<Self>, cx: &mut JSContext); }
A boxed version of TaskOnce.
TaskOnce
self