Struct glib::Receiver

source ·
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§

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.