[−][src]Struct glib::Receiver
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<'a, P: Into<Option<&'a MainContext>>, F: FnMut(T) -> Continue + 'static>(
self,
context: P,
func: F
) -> SourceId[src]
self,
context: P,
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.
Trait Implementations
impl<T> Drop for Receiver<T>[src]
impl<T: Send> Send for Receiver<T>[src]
impl<T: Debug> Debug for Receiver<T>[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,