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

pub struct QueryAxTreeParams {
    pub node_id: Option<NodeId>,
    pub backend_node_id: Option<BackendNodeId>,
    pub object_id: Option<RemoteObjectId>,
    pub accessible_name: Option<String>,
    pub role: Option<String>,
}

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

node_id: Option<NodeId>

Identifier of the node for the root to query.

backend_node_id: Option<BackendNodeId>

Identifier of the backend node for the root to query.

object_id: Option<RemoteObjectId>

JavaScript object id of the node wrapper for the root to query.

accessible_name: Option<String>

Find nodes with this computed name.

role: Option<String>

Find nodes with this computed role.

Implementations

impl QueryAxTreeParams[src]

impl QueryAxTreeParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for QueryAxTreeParams[src]

impl Command for QueryAxTreeParams[src]

type Response = QueryAxTreeReturns

The type of the response this request triggers on the chromium server

impl Debug for QueryAxTreeParams[src]

impl Default for QueryAxTreeParams[src]

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

impl Method for QueryAxTreeParams[src]

impl MethodType for QueryAxTreeParams[src]

impl PartialEq<QueryAxTreeParams> for QueryAxTreeParams[src]

impl Serialize for QueryAxTreeParams[src]

impl StructuralPartialEq for QueryAxTreeParams[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>,