Struct dioxus_desktop::tao::event_loop::EventLoopProxy
pub struct EventLoopProxy<T>where
T: 'static,{ /* private fields */ }Expand description
Used to send custom events to EventLoop.
Implementations§
§impl<T> EventLoopProxy<T>where
T: 'static,
impl<T> EventLoopProxy<T>where
T: 'static,
pub 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.
Trait Implementations§
§impl<T> Clone for EventLoopProxy<T>where
T: 'static,
impl<T> Clone for EventLoopProxy<T>where
T: 'static,
§fn clone(&self) -> EventLoopProxy<T>
fn clone(&self) -> EventLoopProxy<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more