[][src]Enum thirtyfour_sync::common::action::PointerAction

pub enum PointerAction {
    Pause {
        duration: u64,
    },
    PointerDown {
        button: MouseButton,
        duration: u64,
    },
    PointerUp {
        button: MouseButton,
        duration: u64,
    },
    PointerMove {
        duration: u64,
        origin: PointerOrigin,
        x: i32,
        y: i32,
    },
    PointerCancel,
}

Variants

Pause

Fields of Pause

duration: u64
PointerDown

Fields of PointerDown

button: MouseButtonduration: u64
PointerUp

Fields of PointerUp

button: MouseButtonduration: u64
PointerMove

Fields of PointerMove

duration: u64origin: PointerOriginx: i32y: i32
PointerCancel

Trait Implementations

impl Action for PointerAction[src]

impl Clone for PointerAction[src]

impl Debug for PointerAction[src]

impl Serialize for PointerAction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.