Enum calloop::channel::Event [−][src]
pub enum Event<T> {
Msg(T),
Closed,
}
Expand description
The events generated by the channel event source
Variants
Msg(T)
A message was received and is bundled here
Closed
The channel was closed
This means all the Sender
s associated with this channel
have been dropped, no more messages will ever be received.