Struct cdp::dom::GetAttributesResponse [] [src]

pub struct GetAttributesResponse<'a> {
    pub attributes: Vec<Cow<'a, str>>,
}

Returns attributes for the specified node.

Command DOM.getAttributes

Domain Module: cdp::dom
Command Struct: cdp::dom::GetAttributesCommand
Response Struct: cdp::dom::GetAttributesResponse

Fields

An interleaved array of node attribute names and values.

Trait Implementations

impl<'a> Clone for GetAttributesResponse<'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 GetAttributesResponse<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for GetAttributesResponse<'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 GetAttributesResponse<'a>
[src]

COMMAND_NAME: &'static str = "DOM.getAttributes"

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