Enum mio_misc::channel::TrySendError [−][src]
pub enum TrySendError<T> {
Io(Error),
Full(T),
Disconnected(T),
NotificationQueueFull,
}
Expand description
An error returned from the SyncSender::try_send
function.
Variants
Io(Error)
Tuple Fields
0: Error
An IO error.
Full(T)
Data could not be sent over the channel because it would require the callee to block.
Disconnected(T)
The receiving half of the channel has disconnected.
NotificationQueueFull
Underlying notification queue is full
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.