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

pub struct DispatchKeyEventParams {
    pub type: DispatchKeyEventType,
    pub modifiers: Option<i64>,
    pub timestamp: Option<TimeSinceEpoch>,
    pub text: Option<String>,
    pub unmodified_text: Option<String>,
    pub key_identifier: Option<String>,
    pub code: Option<String>,
    pub key: Option<String>,
    pub windows_virtual_key_code: Option<i64>,
    pub native_virtual_key_code: Option<i64>,
    pub auto_repeat: Option<bool>,
    pub is_keypad: Option<bool>,
    pub is_system_key: Option<bool>,
    pub location: Option<i64>,
    pub commands: Option<Vec<String, Global>>,
}

Dispatches a key event to the page. dispatchKeyEvent

Fields

type: DispatchKeyEventType

Type of the key event.

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.

text: Option<String>

Text as generated by processing a virtual key code with a keyboard layout. Not needed for for keyUp and rawKeyDown events (default: “”)

unmodified_text: Option<String>

Text that would have been generated by the keyboard if no modifiers were pressed (except for shift). Useful for shortcut (accelerator) key handling (default: “”).

key_identifier: Option<String>

Unique key identifier (e.g., ‘U+0041’) (default: “”).

code: Option<String>

Unique DOM defined string value for each physical key (e.g., ‘KeyA’) (default: “”).

key: Option<String>

Unique DOM defined string value describing the meaning of the key in the context of active modifiers, keyboard layout, etc (e.g., ‘AltGr’) (default: “”).

windows_virtual_key_code: Option<i64>

Windows virtual key code (default: 0).

native_virtual_key_code: Option<i64>

Native virtual key code (default: 0).

auto_repeat: Option<bool>

Whether the event was generated from auto repeat (default: false).

is_keypad: Option<bool>

Whether the event was generated from the keypad (default: false).

is_system_key: Option<bool>

Whether the event was a system key event (default: false).

location: Option<i64>

Whether the event was from the left or right side of the keyboard. 1=Left, 2=Right (default: 0).

commands: Option<Vec<String, Global>>

Editing commands to send with the key event (e.g., ‘selectAll’) (default: []). These are related to but not equal the command names used in document.execCommand and NSStandardKeyBindingResponding. See https://source.chromium.org/chromium/chromium/src/+/master:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.

Implementations

impl DispatchKeyEventParams[src]

impl DispatchKeyEventParams[src]

impl DispatchKeyEventParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for DispatchKeyEventParams[src]

impl Command for DispatchKeyEventParams[src]

type Response = DispatchKeyEventReturns

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

impl Debug for DispatchKeyEventParams[src]

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

impl Method for DispatchKeyEventParams[src]

impl MethodType for DispatchKeyEventParams[src]

impl PartialEq<DispatchKeyEventParams> for DispatchKeyEventParams[src]

impl Serialize for DispatchKeyEventParams[src]

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