Struct chrome_remote_interface_model::input::SynthesizeScrollGestureCommand[][src]

pub struct SynthesizeScrollGestureCommand { /* fields omitted */ }

Synthesizes a scroll gesture over a time period by issuing appropriate touch events.

Implementations

impl SynthesizeScrollGestureCommand[src]

pub fn builder() -> SynthesizeScrollGestureCommandBuilder[src]

pub fn x(&self) -> f64[src]

X coordinate of the start of the gesture in CSS pixels.

pub fn y(&self) -> f64[src]

Y coordinate of the start of the gesture in CSS pixels.

pub fn x_distance(&self) -> Option<&f64>[src]

The distance to scroll along the X axis (positive to scroll left).

pub fn y_distance(&self) -> Option<&f64>[src]

The distance to scroll along the Y axis (positive to scroll up).

pub fn x_overscroll(&self) -> Option<&f64>[src]

The number of additional pixels to scroll back along the X axis, in addition to the given distance.

pub fn y_overscroll(&self) -> Option<&f64>[src]

The number of additional pixels to scroll back along the Y axis, in addition to the given distance.

pub fn prevent_fling(&self) -> Option<&bool>[src]

Prevent fling (default: true).

pub fn speed(&self) -> Option<&u32>[src]

Swipe speed in pixels per second (default: 800).

pub fn gesture_source_type(&self) -> Option<&JsonValue>[src]

Which type of input events to be generated (default: 'default', which queries the platform for the preferred input type).

pub fn repeat_count(&self) -> Option<&u32>[src]

The number of times to repeat the gesture (default: 0).

pub fn repeat_delay_ms(&self) -> Option<&u32>[src]

The number of milliseconds delay between each repeat. (default: 250).

pub fn interaction_marker_name(&self) -> Option<&String>[src]

The name of the interaction markers to generate, if not empty (default: "").

Trait Implementations

impl Clone for SynthesizeScrollGestureCommand[src]

impl Command for SynthesizeScrollGestureCommand[src]

type Return = SynthesizeScrollGestureReturn

Return type.

impl Debug for SynthesizeScrollGestureCommand[src]

impl<'de> Deserialize<'de> for SynthesizeScrollGestureCommand[src]

impl Serialize for SynthesizeScrollGestureCommand[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.