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

pub struct SynthesizePinchGestureParams {
    pub x: f64,
    pub y: f64,
    pub scale_factor: f64,
    pub relative_speed: Option<i64>,
    pub gesture_source_type: Option<GestureSourceType>,
}

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

Fields

x: f64

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

y: f64

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

scale_factor: f64

Relative scale factor after zooming (>1.0 zooms in, <1.0 zooms out).

relative_speed: Option<i64>

Relative pointer speed in pixels per second (default: 800).

gesture_source_type: Option<GestureSourceType>

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

Implementations

impl SynthesizePinchGestureParams[src]

pub fn new(
    x: impl Into<f64>,
    y: impl Into<f64>,
    scale_factor: impl Into<f64>
) -> SynthesizePinchGestureParams
[src]

impl SynthesizePinchGestureParams[src]

impl SynthesizePinchGestureParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SynthesizePinchGestureParams[src]

impl Command for SynthesizePinchGestureParams[src]

type Response = SynthesizePinchGestureReturns

The type of the response this request triggers on the chromium server

impl Debug for SynthesizePinchGestureParams[src]

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

impl Method for SynthesizePinchGestureParams[src]

impl MethodType for SynthesizePinchGestureParams[src]

impl PartialEq<SynthesizePinchGestureParams> for SynthesizePinchGestureParams[src]

impl Serialize for SynthesizePinchGestureParams[src]

impl StructuralPartialEq for SynthesizePinchGestureParams[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> 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>,