pub type JobTrySendError<T> = TrySendError<T>;
pub enum JobTrySendError<T> { Full(T), Closed(T), }
The channel is full but not closed.
The channel is closed.