pub struct ResolveNodeParams {
pub node_id: Option<NodeId>,
pub backend_node_id: Option<BackendNodeId>,
pub object_group: Option<String>,
pub execution_context_id: Option<i64>,
}Expand description
Parameters for DOM.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<i64>Execution context in which to resolve the node.
Trait Implementations§
Source§impl Clone for ResolveNodeParams
impl Clone for ResolveNodeParams
Source§fn clone(&self) -> ResolveNodeParams
fn clone(&self) -> ResolveNodeParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResolveNodeParams
impl Debug for ResolveNodeParams
Auto Trait Implementations§
impl Freeze for ResolveNodeParams
impl RefUnwindSafe for ResolveNodeParams
impl Send for ResolveNodeParams
impl Sync for ResolveNodeParams
impl Unpin for ResolveNodeParams
impl UnwindSafe for ResolveNodeParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more