Struct winput::message_loop::EventReceiver[][src]

pub struct EventReceiver { /* fields omitted */ }

The result of the start function. This structure receives the messages received by the message loop.

The message loop is automatically stopped when this structure is dropped.

Implementations

impl EventReceiver[src]

pub fn clear(&self)[src]

Discard all the events stored in the receiver.

pub fn next_event(&self) -> Event[src]

Blocks the current thread until an event is received.

pub fn next_event_timeout(&self, timeout: Duration) -> Option<Event>[src]

Blocks the current thread until an event is received or the given duration is reached.

pub fn try_next_event(&self) -> Option<Event>[src]

Tries to receive an event without blocking the thread.

Trait Implementations

impl Drop for EventReceiver[src]

Auto Trait Implementations

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, 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.