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

pub struct DispatchMouseEventParams {
    pub type: DispatchMouseEventType,
    pub x: f64,
    pub y: f64,
    pub modifiers: Option<i64>,
    pub timestamp: Option<TimeSinceEpoch>,
    pub button: Option<MouseButton>,
    pub buttons: Option<i64>,
    pub click_count: Option<i64>,
    pub delta_x: Option<f64>,
    pub delta_y: Option<f64>,
    pub pointer_type: Option<DispatchMouseEventPointerType>,
}

Dispatches a mouse event to the page. dispatchMouseEvent

Fields

type: DispatchMouseEventType

Type of the mouse event.

x: f64

X coordinate of the event relative to the main frame’s viewport in CSS pixels.

y: f64

Y coordinate of the event relative to the main frame’s viewport in CSS pixels. 0 refers to the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.

modifiers: Option<i64>

Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8 (default: 0).

timestamp: Option<TimeSinceEpoch>

Time at which the event occurred.

button: Option<MouseButton>

Mouse button (default: “none”).

buttons: Option<i64>

A number indicating which buttons are pressed on the mouse when a mouse event is triggered. Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.

click_count: Option<i64>

Number of times the mouse button was clicked (default: 0).

delta_x: Option<f64>

X delta in CSS pixels for mouse wheel event (default: 0).

delta_y: Option<f64>

Y delta in CSS pixels for mouse wheel event (default: 0).

pointer_type: Option<DispatchMouseEventPointerType>

Pointer type (default: “mouse”).

Implementations

impl DispatchMouseEventParams[src]

pub fn new(
    type: impl Into<DispatchMouseEventType>,
    x: impl Into<f64>,
    y: impl Into<f64>
) -> DispatchMouseEventParams
[src]

impl DispatchMouseEventParams[src]

impl DispatchMouseEventParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for DispatchMouseEventParams[src]

impl Command for DispatchMouseEventParams[src]

type Response = DispatchMouseEventReturns

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

impl Debug for DispatchMouseEventParams[src]

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

impl Into<DispatchMouseEventParams> for Point[src]

Converts a point into Left-Down-Single-Mouseclick

impl Method for DispatchMouseEventParams[src]

impl MethodType for DispatchMouseEventParams[src]

impl PartialEq<DispatchMouseEventParams> for DispatchMouseEventParams[src]

impl Serialize for DispatchMouseEventParams[src]

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