Struct chrome_remote_interface_model::dom::GetNodeForLocationCommand[][src]

pub struct GetNodeForLocationCommand { /* fields omitted */ }
This is supported on crate features DOM and Runtime only.

Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.

Implementations

impl GetNodeForLocationCommand[src]

pub fn builder() -> GetNodeForLocationCommandBuilder[src]

pub fn x(&self) -> u32[src]

X coordinate.

pub fn y(&self) -> u32[src]

Y coordinate.

pub fn include_user_agent_shadow_dom(&self) -> Option<&bool>[src]

False to skip to the nearest non-UA shadow root ancestor (default: false).

pub fn ignore_pointer_events_none(&self) -> Option<&bool>[src]

Whether to ignore pointer-events: none on elements and hit test them.

Trait Implementations

impl Clone for GetNodeForLocationCommand[src]

impl Command for GetNodeForLocationCommand[src]

type Return = GetNodeForLocationReturn

Return type.

impl Debug for GetNodeForLocationCommand[src]

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

impl Serialize for GetNodeForLocationCommand[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> 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.