Struct chromiumoxide::cdp::browser_protocol::accessibility::QueryAxTreeReturns[][src]

pub struct QueryAxTreeReturns {
    pub nodes: Vec<AxNode, Global>,
}

Query a DOM node’s accessibility subtree for accessible name and role. This command computes the name and role for all nodes in the subtree, including those that are ignored for accessibility, and returns those that mactch the specified name and role. If no DOM node is specified, or the DOM node does not exist, the command returns an error. If neither accessibleName or role is specified, it returns all the accessibility nodes in the subtree. queryAXTree

Fields

nodes: Vec<AxNode, Global>

A list of Accessibility.AXNode matching the specified attributes, including nodes that are ignored for accessibility.

Implementations

impl QueryAxTreeReturns[src]

impl QueryAxTreeReturns[src]

Trait Implementations

impl Clone for QueryAxTreeReturns[src]

impl Debug for QueryAxTreeReturns[src]

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

impl PartialEq<QueryAxTreeReturns> for QueryAxTreeReturns[src]

impl Serialize for QueryAxTreeReturns[src]

impl StructuralPartialEq for QueryAxTreeReturns[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,