Expand description
Shared operation control primitives for tea-rs.
§Example
use tea_control::CancellationScope;
let root = CancellationScope::new();
let child = root.child();
root.cancel();
assert!(child.is_cancelled());Structs§
- Cancellation
Scope - Cooperative cancellation scope for an owned operation and its children.