Why does Tokio have a Handle concept? Rather than using Arc<Runtime> or something? Just to hide the lifecycle API or are there other considerations?
3
1
1
6
Doesn't `Arc<T>` imply a bunch of primitives not necessarily available in `#[no_std]` type situations?
1
Not sure, but could use Rc or something custom but similar
1