pub struct QueryAXTreeReturnObject {
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 QueryAXTreeReturnObject
impl Clone for QueryAXTreeReturnObject
Source§fn clone(&self) -> QueryAXTreeReturnObject
fn clone(&self) -> QueryAXTreeReturnObject
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 QueryAXTreeReturnObject
impl Debug for QueryAXTreeReturnObject
Source§impl<'de> Deserialize<'de> for QueryAXTreeReturnObject
impl<'de> Deserialize<'de> for QueryAXTreeReturnObject
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
Source§impl PartialEq for QueryAXTreeReturnObject
impl PartialEq for QueryAXTreeReturnObject
Source§impl Serialize for QueryAXTreeReturnObject
impl Serialize for QueryAXTreeReturnObject
impl StructuralPartialEq for QueryAXTreeReturnObject
Auto Trait Implementations§
impl Freeze for QueryAXTreeReturnObject
impl RefUnwindSafe for QueryAXTreeReturnObject
impl Send for QueryAXTreeReturnObject
impl Sync for QueryAXTreeReturnObject
impl Unpin for QueryAXTreeReturnObject
impl UnsafeUnpin for QueryAXTreeReturnObject
impl UnwindSafe for QueryAXTreeReturnObject
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