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 name list.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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