Struct chromiumoxide::cdp::browser_protocol::input::SynthesizeScrollGestureParamsBuilder[][src]

pub struct SynthesizeScrollGestureParamsBuilder { /* fields omitted */ }

Implementations

impl SynthesizeScrollGestureParamsBuilder[src]

pub fn x(self, x: impl Into<f64>) -> SynthesizeScrollGestureParamsBuilder[src]

pub fn y(self, y: impl Into<f64>) -> SynthesizeScrollGestureParamsBuilder[src]

pub fn x_distance(
    self,
    x_distance: impl Into<f64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn y_distance(
    self,
    y_distance: impl Into<f64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn x_overscroll(
    self,
    x_overscroll: impl Into<f64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn y_overscroll(
    self,
    y_overscroll: impl Into<f64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn prevent_fling(
    self,
    prevent_fling: impl Into<bool>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn speed(
    self,
    speed: impl Into<i64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn gesture_source_type(
    self,
    gesture_source_type: impl Into<GestureSourceType>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn repeat_count(
    self,
    repeat_count: impl Into<i64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn repeat_delay_ms(
    self,
    repeat_delay_ms: impl Into<i64>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn interaction_marker_name(
    self,
    interaction_marker_name: impl Into<String>
) -> SynthesizeScrollGestureParamsBuilder
[src]

pub fn build(self) -> Result<SynthesizeScrollGestureParams, String>[src]

Trait Implementations

impl Clone for SynthesizeScrollGestureParamsBuilder[src]

impl Default for SynthesizeScrollGestureParamsBuilder[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,