pub struct GetAXNodeAndAncestorsReturns {
pub nodes: Vec<AXNode>,
}Expand description
Fetches a node and all ancestors up to and including the root. Requires ‘enable()’ to have been called previously.
Fields§
§nodes: Vec<AXNode>Trait Implementations§
Source§impl Clone for GetAXNodeAndAncestorsReturns
impl Clone for GetAXNodeAndAncestorsReturns
Source§fn clone(&self) -> GetAXNodeAndAncestorsReturns
fn clone(&self) -> GetAXNodeAndAncestorsReturns
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 GetAXNodeAndAncestorsReturns
impl Debug for GetAXNodeAndAncestorsReturns
Source§impl Default for GetAXNodeAndAncestorsReturns
impl Default for GetAXNodeAndAncestorsReturns
Source§fn default() -> GetAXNodeAndAncestorsReturns
fn default() -> GetAXNodeAndAncestorsReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAXNodeAndAncestorsReturns
impl<'de> Deserialize<'de> for GetAXNodeAndAncestorsReturns
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 GetAXNodeAndAncestorsReturns
impl RefUnwindSafe for GetAXNodeAndAncestorsReturns
impl Send for GetAXNodeAndAncestorsReturns
impl Sync for GetAXNodeAndAncestorsReturns
impl Unpin for GetAXNodeAndAncestorsReturns
impl UnsafeUnpin for GetAXNodeAndAncestorsReturns
impl UnwindSafe for GetAXNodeAndAncestorsReturns
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