Struct chromiumoxide_cdp::cdp::browser_protocol::dom_snapshot::DomNode[][src]

pub struct DomNode {
Show fields pub node_type: i64, pub node_name: String, pub node_value: String, pub text_value: Option<String>, pub input_value: Option<String>, pub input_checked: Option<bool>, pub option_selected: Option<bool>, pub backend_node_id: BackendNodeId, pub child_node_indexes: Option<Vec<i64>>, pub attributes: Option<Vec<NameValue>>, pub pseudo_element_indexes: Option<Vec<i64>>, pub layout_node_index: Option<i64>, pub document_url: Option<String>, pub base_url: Option<String>, pub content_language: Option<String>, pub document_encoding: Option<String>, pub public_id: Option<String>, pub system_id: Option<String>, pub frame_id: Option<FrameId>, pub content_document_index: Option<i64>, pub pseudo_type: Option<PseudoType>, pub shadow_root_type: Option<ShadowRootType>, pub is_clickable: Option<bool>, pub event_listeners: Option<Vec<EventListener>>, pub current_source_url: Option<String>, pub origin_url: Option<String>, pub scroll_offset_x: Option<f64>, pub scroll_offset_y: Option<f64>,
}
Expand description

A Node in the DOM tree. DOMNode

Fields

node_type: i64

Node’s nodeType.

node_name: String

Node’s nodeName.

node_value: String

Node’s nodeValue.

text_value: Option<String>

Only set for textarea elements, contains the text value.

input_value: Option<String>

Only set for input elements, contains the input’s associated text value.

input_checked: Option<bool>

Only set for radio and checkbox input elements, indicates if the element has been checked

option_selected: Option<bool>

Only set for option elements, indicates if the element has been selected

backend_node_id: BackendNodeId

Node’s id, corresponds to DOM.Node.backendNodeId.

child_node_indexes: Option<Vec<i64>>

The indexes of the node’s child nodes in the domNodes array returned by getSnapshot, if any.

attributes: Option<Vec<NameValue>>

Attributes of an Element node.

pseudo_element_indexes: Option<Vec<i64>>

Indexes of pseudo elements associated with this node in the domNodes array returned by getSnapshot, if any.

layout_node_index: Option<i64>

The index of the node’s related layout tree node in the layoutTreeNodes array returned by getSnapshot, if any.

document_url: Option<String>

Document URL that Document or FrameOwner node points to.

base_url: Option<String>

Base URL that Document or FrameOwner node uses for URL completion.

content_language: Option<String>

Only set for documents, contains the document’s content language.

document_encoding: Option<String>

Only set for documents, contains the document’s character set encoding.

public_id: Option<String>

DocumentType node’s publicId.

system_id: Option<String>

DocumentType node’s systemId.

frame_id: Option<FrameId>

Frame ID for frame owner elements and also for the document node.

content_document_index: Option<i64>

The index of a frame owner element’s content document in the domNodes array returned by getSnapshot, if any.

pseudo_type: Option<PseudoType>

Type of a pseudo element node.

shadow_root_type: Option<ShadowRootType>

Shadow root type.

is_clickable: Option<bool>

Whether this DOM node responds to mouse clicks. This includes nodes that have had click event listeners attached via JavaScript as well as anchor tags that naturally navigate when clicked.

event_listeners: Option<Vec<EventListener>>

Details of the node’s event listeners, if any.

current_source_url: Option<String>

The selected url for nodes with a srcset attribute.

origin_url: Option<String>

The url of the script (if any) that generates this node.

scroll_offset_x: Option<f64>

Scroll offsets, set when this node is a Document.

scroll_offset_y: Option<f64>

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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.