pub struct QueryAxTreeReturns {
pub nodes: Vec<AXNode>,
}Expand description
Return type for Accessibility.queryAXTree.
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