pub struct GetNodeForLocationReturns {
pub backendNodeId: BackendNodeId,
pub frameId: FrameId,
pub nodeId: Option<NodeId>,
}Expand description
Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.
Fields§
§backendNodeId: BackendNodeIdResulting node.
frameId: FrameIdFrame this node belongs to.
nodeId: Option<NodeId>Id of the node at given coordinates, only when enabled and requested document.
Trait Implementations§
Source§impl Clone for GetNodeForLocationReturns
impl Clone for GetNodeForLocationReturns
Source§fn clone(&self) -> GetNodeForLocationReturns
fn clone(&self) -> GetNodeForLocationReturns
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 GetNodeForLocationReturns
impl Debug for GetNodeForLocationReturns
Source§impl Default for GetNodeForLocationReturns
impl Default for GetNodeForLocationReturns
Source§fn default() -> GetNodeForLocationReturns
fn default() -> GetNodeForLocationReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetNodeForLocationReturns
impl<'de> Deserialize<'de> for GetNodeForLocationReturns
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 GetNodeForLocationReturns
impl RefUnwindSafe for GetNodeForLocationReturns
impl Send for GetNodeForLocationReturns
impl Sync for GetNodeForLocationReturns
impl Unpin for GetNodeForLocationReturns
impl UnsafeUnpin for GetNodeForLocationReturns
impl UnwindSafe for GetNodeForLocationReturns
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