Struct chromiumoxide::cdp::browser_protocol::dom::DescribeNodeParams[][src]

pub struct DescribeNodeParams {
    pub node_id: Option<NodeId>,
    pub backend_node_id: Option<BackendNodeId>,
    pub object_id: Option<RemoteObjectId>,
    pub depth: Option<i64>,
    pub pierce: Option<bool>,
}

Describes node given its id, does not require domain to be enabled. Does not start tracking any objects, can be used for automation. describeNode

Fields

node_id: Option<NodeId>

Identifier of the node.

backend_node_id: Option<BackendNodeId>

Identifier of the backend node.

object_id: Option<RemoteObjectId>

JavaScript object id of the node wrapper.

depth: Option<i64>

The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0.

pierce: Option<bool>

Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false).

Implementations

impl DescribeNodeParams[src]

impl DescribeNodeParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for DescribeNodeParams[src]

impl Command for DescribeNodeParams[src]

type Response = DescribeNodeReturns

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

impl Debug for DescribeNodeParams[src]

impl Default for DescribeNodeParams[src]

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

impl Method for DescribeNodeParams[src]

impl MethodType for DescribeNodeParams[src]

impl PartialEq<DescribeNodeParams> for DescribeNodeParams[src]

impl Serialize for DescribeNodeParams[src]

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