Struct chromiumoxide::cdp::browser_protocol::dom_snapshot::DomNode

source ·
pub struct DomNode {
Show 28 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§

source§

impl DomNode

source

pub fn new( node_type: impl Into<i64>, node_name: impl Into<String>, node_value: impl Into<String>, backend_node_id: impl Into<BackendNodeId> ) -> DomNode

source§

impl DomNode

source§

impl DomNode

source

pub const IDENTIFIER: &'static str = "DOMSnapshot.DOMNode"

Trait Implementations§

source§

impl Clone for DomNode

source§

fn clone(&self) -> DomNode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DomNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for DomNode

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<DomNode, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for DomNode

source§

fn eq(&self, other: &DomNode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for DomNode

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for DomNode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,