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

pub struct ResolveNodeParams {
    pub node_id: Option<NodeId>,
    pub backend_node_id: Option<BackendNodeId>,
    pub object_group: Option<String>,
    pub execution_context_id: Option<ExecutionContextId>,
}

Resolves the JavaScript node object for a given NodeId or BackendNodeId. resolveNode

Fields

node_id: Option<NodeId>

Id of the node to resolve.

backend_node_id: Option<BackendNodeId>

Backend identifier of the node to resolve.

object_group: Option<String>

Symbolic group name that can be used to release multiple objects.

execution_context_id: Option<ExecutionContextId>

Execution context in which to resolve the node.

Implementations

impl ResolveNodeParams[src]

impl ResolveNodeParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for ResolveNodeParams[src]

impl Command for ResolveNodeParams[src]

type Response = ResolveNodeReturns

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

impl Debug for ResolveNodeParams[src]

impl Default for ResolveNodeParams[src]

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

impl Method for ResolveNodeParams[src]

impl MethodType for ResolveNodeParams[src]

impl PartialEq<ResolveNodeParams> for ResolveNodeParams[src]

impl Serialize for ResolveNodeParams[src]

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