[][src]Struct winit_main::Blocker

pub struct Blocker(_);

Concurrency structure, emitted as a user event immediately after certain other events are emitted, which blocks the event loop until this Blocker is dropped.

Implementations

impl Blocker[src]

pub fn unblock(self)[src]

Unblock the event loop. This is only to facilitate readability, since Blocker unblocks the event loop when dropped.

Trait Implementations

impl Drop for Blocker[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.