[][src]Struct message_io::events::EventSender

pub struct EventSender<E> { /* fields omitted */ }

Implementations

impl<E> EventSender<E> where
    E: Send + 'static, 
[src]

pub fn send(&self, event: E)[src]

Send instantly an event to the event queue.

pub fn send_with_priority(&self, event: E)[src]

Send instantly an event that would be process before any other event sent by the send() method. Successive calls to send_with_priority will maintain the order of arrival.

pub fn send_with_timer(&mut self, event: E, duration: Duration)[src]

Send a timed event to the EventQueue. The event only will be sent after the specific duration, never before, even it the EventSender is dropped.

Trait Implementations

impl<E> Clone for EventSender<E>[src]

impl<E> Drop for EventSender<E>[src]

Auto Trait Implementations

impl<E> !RefUnwindSafe for EventSender<E>

impl<E> Send for EventSender<E> where
    E: Send

impl<E> Sync for EventSender<E> where
    E: Send

impl<E> Unpin for EventSender<E>

impl<E> !UnwindSafe for EventSender<E>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.