Struct winit::event_loop::EventLoopProxy [−][src]
pub struct EventLoopProxy<T: 'static> { /* fields omitted */ }
Expand description
Used to send custom events to EventLoop
.
Implementations
Send an event to the EventLoop
from which this proxy was created. This emits a
UserEvent(event)
event in the event loop, where event
is the value passed to this
function.
Returns an Err
if the associated EventLoop
no longer exists.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for EventLoopProxy<T>
impl<T> Send for EventLoopProxy<T> where
T: Send,
impl<T> !Sync for EventLoopProxy<T>
impl<T> Unpin for EventLoopProxy<T>
impl<T> !UnwindSafe for EventLoopProxy<T>
Blanket Implementations
Mutably borrows from an owned value. Read more