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