pub struct QueryAXTreeReturns<'a> { /* private fields */ }Expand description
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 match 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.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for QueryAXTreeReturns<'a>
impl<'a> Clone for QueryAXTreeReturns<'a>
Source§fn clone(&self) -> QueryAXTreeReturns<'a>
fn clone(&self) -> QueryAXTreeReturns<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for QueryAXTreeReturns<'a>
impl<'a> Debug for QueryAXTreeReturns<'a>
Source§impl<'a> Default for QueryAXTreeReturns<'a>
impl<'a> Default for QueryAXTreeReturns<'a>
Source§fn default() -> QueryAXTreeReturns<'a>
fn default() -> QueryAXTreeReturns<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for QueryAXTreeReturns<'a>
impl<'de, 'a> Deserialize<'de> for QueryAXTreeReturns<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for QueryAXTreeReturns<'a>
impl<'a> RefUnwindSafe for QueryAXTreeReturns<'a>
impl<'a> Send for QueryAXTreeReturns<'a>
impl<'a> Sync for QueryAXTreeReturns<'a>
impl<'a> Unpin for QueryAXTreeReturns<'a>
impl<'a> UnsafeUnpin for QueryAXTreeReturns<'a>
impl<'a> UnwindSafe for QueryAXTreeReturns<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more