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
attributes: Vec<Cow<'a, str>>
An interleaved array of node attribute names and values.
Trait Implementations
impl<'a> Clone for GetAttributesResponse<'a>
[src]
fn clone(&self) -> GetAttributesResponse<'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 GetAttributesResponse<'a>
[src]
impl<'a> PartialEq for GetAttributesResponse<'a>
[src]
fn eq(&self, __arg_0: &GetAttributesResponse<'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: &GetAttributesResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetAttributesResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOM.getAttributes"