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§
source§impl<T> Receiver<T>
 
impl<T> Receiver<T>
sourcepub fn attach<F: FnMut(T) -> Continue + 'static>(
    self,
    context: Option<&MainContext>,
    func: F
) -> SourceId
 
pub fn attach<F: FnMut(T) -> Continue + 'static>( self, context: Option<&MainContext>, func: F ) -> SourceId
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.