pub struct QueryAXTreeReturns {
pub nodes: Vec<AXNode>,
}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.
Fields§
§nodes: Vec<AXNode>A list of ‘Accessibility.AXNode’ matching the specified attributes, including nodes that are ignored for accessibility.
Trait Implementations§
Source§impl Clone for QueryAXTreeReturns
impl Clone for QueryAXTreeReturns
Source§fn clone(&self) -> QueryAXTreeReturns
fn clone(&self) -> QueryAXTreeReturns
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryAXTreeReturns
impl Debug for QueryAXTreeReturns
Source§impl Default for QueryAXTreeReturns
impl Default for QueryAXTreeReturns
Source§fn default() -> QueryAXTreeReturns
fn default() -> QueryAXTreeReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryAXTreeReturns
impl<'de> Deserialize<'de> for QueryAXTreeReturns
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 Freeze for QueryAXTreeReturns
impl RefUnwindSafe for QueryAXTreeReturns
impl Send for QueryAXTreeReturns
impl Sync for QueryAXTreeReturns
impl Unpin for QueryAXTreeReturns
impl UnsafeUnpin for QueryAXTreeReturns
impl UnwindSafe for QueryAXTreeReturns
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