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.
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: Send,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)