pub enum PointerEventKind {
Down(PointerButton),
Up(PointerButton),
Move,
Cancel,
Enter,
Leave,
}Variants§
Trait Implementations§
Source§impl Clone for PointerEventKind
impl Clone for PointerEventKind
Source§fn clone(&self) -> PointerEventKind
fn clone(&self) -> PointerEventKind
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 moreSource§impl Debug for PointerEventKind
impl Debug for PointerEventKind
impl Copy for PointerEventKind
Auto Trait Implementations§
impl Freeze for PointerEventKind
impl RefUnwindSafe for PointerEventKind
impl Send for PointerEventKind
impl Sync for PointerEventKind
impl Unpin for PointerEventKind
impl UnwindSafe for PointerEventKind
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