pub fn spawn_abortable_delay<F>( duration: Duration, future: F, ) -> AbortableJoinHandle<F::Output> ⓘwhere F: Future + Send + 'static, F::Output: Send + 'static,
Spawns a task after waiting for a duration before the task is polled.