pub fn spawn_in_driver<T: Send + 'static>(
name: &str,
p: impl Future<Output = T> + Send + 'static,
) -> T
Expand description
Runs the given future to completion under the a new root driver dispatcher. Use
fdf::CurrentDispatcher
to reference the dispatcher if needed.