pub enum SynthesizedWindowEvent {
Focused(bool),
DragDrop(DragDropEvent),
}
Variants§
Focused(bool)
DragDrop(DragDropEvent)
Trait Implementations§
Source§impl Clone for SynthesizedWindowEvent
impl Clone for SynthesizedWindowEvent
Source§fn clone(&self) -> SynthesizedWindowEvent
fn clone(&self) -> SynthesizedWindowEvent
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 moreSource§impl Debug for SynthesizedWindowEvent
impl Debug for SynthesizedWindowEvent
Source§impl From<SynthesizedWindowEvent> for WindowEventWrapper
impl From<SynthesizedWindowEvent> for WindowEventWrapper
Source§fn from(event: SynthesizedWindowEvent) -> Self
fn from(event: SynthesizedWindowEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SynthesizedWindowEvent
impl RefUnwindSafe for SynthesizedWindowEvent
impl Send for SynthesizedWindowEvent
impl Sync for SynthesizedWindowEvent
impl Unpin for SynthesizedWindowEvent
impl UnwindSafe for SynthesizedWindowEvent
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