pub fn run_fork<RT, A, E, R, F>(runtime: &RT, f: F) -> FiberHandle<A, E>Expand description
Spawn a fiber using runtime (delegates to Runtime::spawn_with).
Pass a Send factory, e.g. || (succeed(42), ()), so the Effect is built on the worker.