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

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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for GetPartialAxTreeResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetPartialAxTreeResponse<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> CdpCommand for GetPartialAxTreeResponse<'a>
[src]

COMMAND_NAME: &'static str = "Accessibility.getPartialAXTree"

impl<'a, 'b> HasCdpCommand<'a> for GetPartialAxTreeResponse<'b>
[src]