pub struct EventLoopProxy<T: 'static> { /* private fields */ }
Expand description
Used to send custom events to EventLoop
.
Implementations§
Source§impl<T: 'static> EventLoopProxy<T>
impl<T: 'static> EventLoopProxy<T>
Sourcepub fn send_event(&self, event: T) -> Result<(), EventLoopClosed<T>>
pub fn send_event(&self, event: T) -> Result<(), EventLoopClosed<T>>
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.
Examples found in repository?
examples/window.rs (line 62)
46fn main() -> Result<(), Box<dyn Error>> {
47 #[cfg(web_platform)]
48 console_error_panic_hook::set_once();
49
50 tracing::init();
51
52 let event_loop = EventLoop::<UserEvent>::with_user_event().build()?;
53 let _event_loop_proxy = event_loop.create_proxy();
54
55 // Wire the user event from another thread.
56 #[cfg(not(web_platform))]
57 std::thread::spawn(move || {
58 // Wake up the `event_loop` once every second and dispatch a custom event
59 // from a different thread.
60 info!("Starting to send user event every second");
61 loop {
62 let _ = _event_loop_proxy.send_event(UserEvent::WakeUp);
63 std::thread::sleep(std::time::Duration::from_secs(1));
64 }
65 });
66
67 let mut state = Application::new(&event_loop);
68
69 event_loop.run_app(&mut state).map_err(Into::into)
70}
Trait Implementations§
Source§impl<T: 'static> Clone for EventLoopProxy<T>
impl<T: 'static> Clone for EventLoopProxy<T>
Auto Trait Implementations§
impl<T> Freeze for EventLoopProxy<T>
impl<T> RefUnwindSafe for EventLoopProxy<T>
impl<T> Send for EventLoopProxy<T>where
T: Send,
impl<T> Sync for EventLoopProxy<T>where
T: Sync,
impl<T> Unpin for EventLoopProxy<T>
impl<T> UnwindSafe for EventLoopProxy<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more