Struct cdp::accessibility::GetPartialAxTreeResponse
[−]
[src]
pub struct GetPartialAxTreeResponse<'a> { pub nodes: Vec<AxNode<'a>>, }
[Experimental] Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
Command Accessibility.getPartialAXTree
Domain Module: cdp::accessibility
Command Struct: cdp::accessibility::GetPartialAxTreeCommand
Response Struct: cdp::accessibility::GetPartialAxTreeResponse
Fields
nodes: Vec<AxNode<'a>>
The Accessibility.AXNode
for this DOM node, if it exists, plus its ancestors, siblings and children, if requested.
Trait Implementations
impl<'a> Clone for GetPartialAxTreeResponse<'a>
[src]
fn clone(&self) -> GetPartialAxTreeResponse<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for GetPartialAxTreeResponse<'a>
[src]
impl<'a> PartialEq for GetPartialAxTreeResponse<'a>
[src]
fn eq(&self, __arg_0: &GetPartialAxTreeResponse<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &GetPartialAxTreeResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetPartialAxTreeResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Accessibility.getPartialAXTree"