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

pub struct DispatchKeyEventParams {
Show fields 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>>,
}
Expand description

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>>

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

deserialize the response from json

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The whole string identifier for this method like: DOM.removeNode

The name of the domain this method belongs to: DOM

The standalone identifier of the method inside the domain: removeNode

Tuple of (domain_name, method_name) : (DOM, removeNode)

The identifier for this event’s method field

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.