Struct glib::SyncSender [−][src]
pub struct SyncSender<T>(_);
Expand description
A SyncSender
that can be used to send items to the corresponding main context receiver.
This SyncSender
behaves the same as std::sync::mpsc::SyncSender
.
See MainContext::sync_channel()
for how to create such a SyncSender
.
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for SyncSender<T>
impl<T> Send for SyncSender<T> where
T: Send,
impl<T> Sync for SyncSender<T> where
T: Send,
impl<T> Unpin for SyncSender<T>
impl<T> !UnwindSafe for SyncSender<T>
Blanket Implementations
Mutably borrows from an owned value. Read more