#[repr(u32)]pub enum PointerEventType {
Down = 1,
Up = 2,
Move = 3,
Enter = 4,
Leave = 5,
Cancel = 6,
}Variants§
Trait Implementations§
Source§impl Clone for PointerEventType
impl Clone for PointerEventType
Source§fn clone(&self) -> PointerEventType
fn clone(&self) -> PointerEventType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointerEventType
Source§impl Debug for PointerEventType
impl Debug for PointerEventType
impl Eq for PointerEventType
Source§impl PartialEq for PointerEventType
impl PartialEq for PointerEventType
impl StructuralPartialEq for PointerEventType
Auto Trait Implementations§
impl Freeze for PointerEventType
impl RefUnwindSafe for PointerEventType
impl Send for PointerEventType
impl Sync for PointerEventType
impl Unpin for PointerEventType
impl UnsafeUnpin for PointerEventType
impl UnwindSafe for PointerEventType
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