tokio-tree-context
Similar to tokio-context, but support multiple level context
Usage
Example
let mut ctx = new;
let mut ctx1 = ctx.new_child_context;
let mut ctx12 = ctx1.new_child_context;
ctx.spawn;
ctx1.spawn;
ctx12.spawn;
println!;
drop;
sleep.await;
println!;
drop;
sleep.await;
println!;
drop;
sleep.await;