Struct chrome_remote_interface_model::accessibility::AxNodeBuilder[][src]

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

Implementations

impl AxNodeBuilder[src]

pub fn node_id(&mut self, v: AxNodeId) -> &mut Self[src]

Unique identifier for this node.

pub fn ignored(&mut self, v: bool) -> &mut Self[src]

Whether this node is ignored for accessibility

pub fn ignored_reasons(&mut self, v: Vec<AxProperty>) -> &mut Self[src]

Collection of reasons why this node is hidden.

pub fn role(&mut self, v: AxValue) -> &mut Self[src]

This Node's role, whether explicit or implicit.

pub fn name(&mut self, v: AxValue) -> &mut Self[src]

The accessible name for this Node.

pub fn description(&mut self, v: AxValue) -> &mut Self[src]

The accessible description for this Node.

pub fn value(&mut self, v: AxValue) -> &mut Self[src]

The value for this Node.

pub fn properties(&mut self, v: Vec<AxProperty>) -> &mut Self[src]

All other properties

pub fn child_ids(&mut self, v: Vec<AxNodeId>) -> &mut Self[src]

IDs for each of this node's child nodes.

pub fn backend_dom_node_id(&mut self, v: BackendNodeId) -> &mut Self[src]

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

pub fn build(&mut self) -> Result<AxNode, &'static str>[src]

Trait Implementations

impl Clone for AxNodeBuilder[src]

impl Debug for AxNodeBuilder[src]

impl Default for AxNodeBuilder[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> 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.