pub struct GetNodeForLocationCommand { /* private fields */ }Available on crate features
DOM and Runtime only.Expand description
Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.
Implementations§
Source§impl GetNodeForLocationCommand
impl GetNodeForLocationCommand
pub fn builder() -> GetNodeForLocationCommandBuilder
Sourcepub fn include_user_agent_shadow_dom(&self) -> Option<&bool>
pub fn include_user_agent_shadow_dom(&self) -> Option<&bool>
False to skip to the nearest non-UA shadow root ancestor (default: false).
Sourcepub fn ignore_pointer_events_none(&self) -> Option<&bool>
pub fn ignore_pointer_events_none(&self) -> Option<&bool>
Whether to ignore pointer-events: none on elements and hit test them.
Trait Implementations§
Source§impl Clone for GetNodeForLocationCommand
impl Clone for GetNodeForLocationCommand
Source§fn clone(&self) -> GetNodeForLocationCommand
fn clone(&self) -> GetNodeForLocationCommand
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 GetNodeForLocationCommand
impl Command for GetNodeForLocationCommand
Source§impl Debug for GetNodeForLocationCommand
impl Debug for GetNodeForLocationCommand
Source§impl<'de> Deserialize<'de> for GetNodeForLocationCommand
impl<'de> Deserialize<'de> for GetNodeForLocationCommand
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 GetNodeForLocationCommand
impl RefUnwindSafe for GetNodeForLocationCommand
impl Send for GetNodeForLocationCommand
impl Sync for GetNodeForLocationCommand
impl Unpin for GetNodeForLocationCommand
impl UnwindSafe for GetNodeForLocationCommand
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