Struct cdp::dom::GetOuterHtmlResponse [] [src]

pub struct GetOuterHtmlResponse<'a> {
    pub outer_html: Cow<'a, str>,
}

Returns node's HTML markup.

Command DOM.getOuterHTML

Domain Module: cdp::dom
Command Struct: cdp::dom::GetOuterHtmlCommand
Response Struct: cdp::dom::GetOuterHtmlResponse

Fields

Outer HTML markup.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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