pub(crate) const AWAITER: usize = _; // 32usizeExpand description
Set if the Task is awaiting the output.
This flag is set while there is a registered awaiter of type Waker inside the task. When the
task gets closed or completed, we need to wake the awaiter. This flag can be used as a fast
check that tells us if we need to wake anyone.