Struct chrome_remote_interface_model::accessibility::AxNode[][src]

pub struct AxNode { /* fields omitted */ }
This is supported on crate features experimental and Accessibility and DOM only.

A node in the accessibility tree.

Implementations

impl AxNode[src]

pub fn builder() -> AxNodeBuilder[src]

pub fn node_id(&self) -> &AxNodeId[src]

Unique identifier for this node.

pub fn ignored(&self) -> bool[src]

Whether this node is ignored for accessibility

pub fn ignored_reasons(&self) -> Option<&Vec<AxProperty>>[src]

Collection of reasons why this node is hidden.

pub fn role(&self) -> Option<&AxValue>[src]

This Node's role, whether explicit or implicit.

pub fn name(&self) -> Option<&AxValue>[src]

The accessible name for this Node.

pub fn description(&self) -> Option<&AxValue>[src]

The accessible description for this Node.

pub fn value(&self) -> Option<&AxValue>[src]

The value for this Node.

pub fn properties(&self) -> Option<&Vec<AxProperty>>[src]

All other properties

pub fn child_ids(&self) -> Option<&Vec<AxNodeId>>[src]

IDs for each of this node's child nodes.

pub fn backend_dom_node_id(&self) -> Option<&BackendNodeId>[src]

The backend ID for the associated DOM node, if any.

Trait Implementations

impl Clone for AxNode[src]

impl Debug for AxNode[src]

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

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