Struct cdp::dom::CollectClassNamesFromSubtreeResponse
[−]
[src]
pub struct CollectClassNamesFromSubtreeResponse<'a> { pub class_names: Vec<Cow<'a, str>>, }
[Experimental] Collects class names for the node with given id and all of it's child nodes.
Command DOM.collectClassNamesFromSubtree
Domain Module: cdp::dom
Command Struct: cdp::dom::CollectClassNamesFromSubtreeCommand
Response Struct: cdp::dom::CollectClassNamesFromSubtreeResponse
Fields
class_names: Vec<Cow<'a, str>>
Class name list.
Trait Implementations
impl<'a> Clone for CollectClassNamesFromSubtreeResponse<'a>
[src]
fn clone(&self) -> CollectClassNamesFromSubtreeResponse<'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 CollectClassNamesFromSubtreeResponse<'a>
[src]
impl<'a> PartialEq for CollectClassNamesFromSubtreeResponse<'a>
[src]
fn eq(&self, __arg_0: &CollectClassNamesFromSubtreeResponse<'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: &CollectClassNamesFromSubtreeResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for CollectClassNamesFromSubtreeResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "DOM.collectClassNamesFromSubtree"