Enum thread_pool::SendTimeoutError [] [src]

pub enum SendTimeoutError<T> {
    Disconnected(T),
    Timeout(T),
}

Possible errors that send_timeout could encounter.

Variants

The channel's receiving half has become disconnected, and there will never be any more data received on this channel.

The channel is currently full, and the receiver(s) have not yet disconnected.