pub struct ResolveNodeCommand { /* private fields */ }Available on crate features
DOM and Runtime only.Expand description
Resolves the JavaScript node object for a given NodeId or BackendNodeId.
Implementations§
Source§impl ResolveNodeCommand
impl ResolveNodeCommand
pub fn builder() -> ResolveNodeCommandBuilder
Sourcepub fn backend_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_node_id(&self) -> Option<&BackendNodeId>
Backend identifier of the node to resolve.
Sourcepub fn object_group(&self) -> Option<&String>
pub fn object_group(&self) -> Option<&String>
Symbolic group name that can be used to release multiple objects.
Sourcepub fn execution_context_id(&self) -> Option<&ExecutionContextId>
pub fn execution_context_id(&self) -> Option<&ExecutionContextId>
Execution context in which to resolve the node.
Trait Implementations§
Source§impl Clone for ResolveNodeCommand
impl Clone for ResolveNodeCommand
Source§fn clone(&self) -> ResolveNodeCommand
fn clone(&self) -> ResolveNodeCommand
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 Command for ResolveNodeCommand
impl Command for ResolveNodeCommand
Source§impl Debug for ResolveNodeCommand
impl Debug for ResolveNodeCommand
Source§impl<'de> Deserialize<'de> for ResolveNodeCommand
impl<'de> Deserialize<'de> for ResolveNodeCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResolveNodeCommand
impl RefUnwindSafe for ResolveNodeCommand
impl Send for ResolveNodeCommand
impl Sync for ResolveNodeCommand
impl Unpin for ResolveNodeCommand
impl UnwindSafe for ResolveNodeCommand
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