pub enum OverlayEvent {
Window {
id: u32,
event: WindowEvent,
},
}Expand description
Describe a overlay event.
Variants§
Window
Events related to a specific window.
Trait Implementations§
Source§impl Clone for OverlayEvent
impl Clone for OverlayEvent
Source§fn clone(&self) -> OverlayEvent
fn clone(&self) -> OverlayEvent
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OverlayEvent
impl RefUnwindSafe for OverlayEvent
impl Send for OverlayEvent
impl Sync for OverlayEvent
impl Unpin for OverlayEvent
impl UnsafeUnpin for OverlayEvent
impl UnwindSafe for OverlayEvent
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