Struct glib::Receiver [−][src]
pub struct Receiver<T>(_, _);
Expand description
A Receiver
that can be attached to a main context to receive items from its corresponding
Sender
or SyncSender
.
See MainContext::channel()
or MainContext::sync_channel()
for how to create
such a Receiver
.
Implementations
Attaches the receiver to the given context
and calls func
whenever an item is
available on the channel.
Passing None
for the context will attach it to the thread default main context.
Panics
This function panics if called from a thread that is not the owner of the provided
context
, or, if None
is provided, of the thread default main context.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for Receiver<T>
impl<T> !UnwindSafe for Receiver<T>