blob: c371d22e50b07ea984891b698974f0ee0c3dac90 (
plain) (
blame)
1
2
3
4
5
6
7
|
A single arm inside the `select!` macro.
| Variant | Example | Meaning |
| ---------- | ----------------- | ----------------------------------------------------- |
| `Explicit` | `"async" => expr` | Arm guarded by `feature = "async"` |
| `Not` | `! => expr` | Arm guarded by `not(feature = <other_arm's_feature>)` |
| `Implicit` | `expr` | Feature determined by `.await` detection |
|