pub struct AxNode { /* private fields */ }Available on crate features
experimental and Accessibility and DOM only.Expand description
A node in the accessibility tree.
Implementations§
Source§impl AxNode
impl AxNode
pub fn builder() -> AxNodeBuilder
Sourcepub fn ignored_reasons(&self) -> Option<&Vec<AxProperty>>
pub fn ignored_reasons(&self) -> Option<&Vec<AxProperty>>
Collection of reasons why this node is hidden.
Sourcepub fn description(&self) -> Option<&AxValue>
pub fn description(&self) -> Option<&AxValue>
The accessible description for this Node.
Sourcepub fn properties(&self) -> Option<&Vec<AxProperty>>
pub fn properties(&self) -> Option<&Vec<AxProperty>>
All other properties
Sourcepub fn backend_dom_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_dom_node_id(&self) -> Option<&BackendNodeId>
The backend ID for the associated DOM node, if any.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AxNode
impl<'de> Deserialize<'de> for AxNode
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 AxNode
impl RefUnwindSafe for AxNode
impl Send for AxNode
impl Sync for AxNode
impl Unpin for AxNode
impl UnwindSafe for AxNode
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