pub struct Sender<T>(_);
Expand description
A Sender
that can be used to send items to the corresponding main context receiver.
This Sender
behaves the same as std::sync::mpsc::Sender
.
See MainContext::channel()
for how to create such a Sender
.