Struct wry::application::event_loop::EventLoopProxy
source · [−]pub struct EventLoopProxy<T> where
T: 'static, { /* private fields */ }
Expand description
Used to send custom events to EventLoop
.
Implementations
sourceimpl<T> EventLoopProxy<T> where
T: 'static,
impl<T> EventLoopProxy<T> where
T: 'static,
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
sourceimpl<T> Clone for EventLoopProxy<T> where
T: 'static,
impl<T> Clone for EventLoopProxy<T> where
T: 'static,
sourcepub fn clone(&self) -> EventLoopProxy<T>
pub fn clone(&self) -> EventLoopProxy<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more