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: Cow<'a, str>
Outer HTML markup.
Trait Implementations
impl<'a> Clone for GetOuterHtmlResponse<'a>
[src]
fn clone(&self) -> GetOuterHtmlResponse<'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 GetOuterHtmlResponse<'a>
[src]
impl<'a> PartialEq for GetOuterHtmlResponse<'a>
[src]
fn eq(&self, __arg_0: &GetOuterHtmlResponse<'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: &GetOuterHtmlResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetOuterHtmlResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOM.getOuterHTML"