[][src]Struct glib::Receiver

pub struct Receiver<T>(_, _);

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.

Methods

impl<T> Receiver<T>[src]

pub fn attach<F: FnMut(T) -> Continue + 'static>(
    self,
    context: Option<&MainContext>,
    func: F
) -> SourceId
[src]

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

impl<T> Debug for Receiver<T>[src]

impl<T> Drop for Receiver<T>[src]

impl<T: Send> Send for Receiver<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Receiver<T>

impl<T> Sync for Receiver<T> where
    T: Send

impl<T> Unpin for Receiver<T>

impl<T> !UnwindSafe for Receiver<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.