[][src]Struct calloop::Source

pub struct Source<E: EventSource> { /* fields omitted */ }

An event source that has been inserted into the event loop

This handle allows you to remove it, and possibly more interactions depending on the source kind that will be provided by the Deref implementation of this struct to the evented object.

Dropping this handle does not deregister this source from the event loop, but will drop the wrapped EventSource, maybe rendering it inert depending on its implementation.

Methods

impl<E: EventSource> Source<E>[src]

pub fn reregister(&self) -> Result<()>[src]

Refresh the registration of this event source to the loop

This can be necessary if the evented object provides methods to change its behavior. Its documentation should inform you of the need for re-registration.

pub fn remove(self) -> E[src]

Remove this source from the event loop

You are given the evented object back.

Trait Implementations

impl<E: EventSource> DerefMut for Source<E>[src]

impl<E: EventSource> Deref for Source<E>[src]

type Target = E

The resulting type after dereferencing.

Auto Trait Implementations

impl<E> !Send for Source<E>

impl<E> !Sync for Source<E>

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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