pub type JobTrySendError<T> = TrySendError<T>;

Aliased Type§

enum JobTrySendError<T> {
    Full(T),
    Closed(T),
}

Variants§

§

Full(T)

The channel is full but not closed.

§

Closed(T)

The channel is closed.