Struct chrome_remote_interface_model::input::SynthesizeScrollGestureCommandBuilder[][src]

pub struct SynthesizeScrollGestureCommandBuilder { /* fields omitted */ }

Implementations

impl SynthesizeScrollGestureCommandBuilder[src]

pub fn x(&mut self, v: f64) -> &mut Self[src]

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

pub fn y(&mut self, v: f64) -> &mut Self[src]

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

pub fn x_distance(&mut self, v: f64) -> &mut Self[src]

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

pub fn y_distance(&mut self, v: f64) -> &mut Self[src]

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

pub fn x_overscroll(&mut self, v: f64) -> &mut Self[src]

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

pub fn y_overscroll(&mut self, v: f64) -> &mut Self[src]

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

pub fn prevent_fling(&mut self, v: bool) -> &mut Self[src]

Prevent fling (default: true).

pub fn speed(&mut self, v: u32) -> &mut Self[src]

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

pub fn gesture_source_type(&mut self, v: JsonValue) -> &mut Self[src]

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

pub fn repeat_count(&mut self, v: u32) -> &mut Self[src]

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

pub fn repeat_delay_ms(&mut self, v: u32) -> &mut Self[src]

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

pub fn interaction_marker_name(&mut self, v: String) -> &mut Self[src]

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

pub fn build(&mut self) -> Result<SynthesizeScrollGestureCommand, &'static str>[src]

Trait Implementations

impl Clone for SynthesizeScrollGestureCommandBuilder[src]

impl Debug for SynthesizeScrollGestureCommandBuilder[src]

impl Default for SynthesizeScrollGestureCommandBuilder[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, 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.