RecvState is the state of a channel after receiving a value.
const (
// StateRecv means that a value was received from the channel. StateRecv RecvState = iota// StateEmpty means that the channel was empty. StateEmpty
// StateClosed means that the channel was closed. StateClosed
)