Struct cdp::css::CollectClassNamesResponse
[−]
[src]
pub struct CollectClassNamesResponse<'a> {
pub class_names: Vec<Cow<'a, str>>,
}[Experimental] Returns all class names from specified stylesheet.
Command CSS.collectClassNames
Domain Module: cdp::css
Command Struct: cdp::css::CollectClassNamesCommand
Response Struct: cdp::css::CollectClassNamesResponse
Fields
class_names: Vec<Cow<'a, str>>
Class name list.
Trait Implementations
impl<'a> Clone for CollectClassNamesResponse<'a>[src]
fn clone(&self) -> CollectClassNamesResponse<'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 CollectClassNamesResponse<'a>[src]
impl<'a> PartialEq for CollectClassNamesResponse<'a>[src]
fn eq(&self, __arg_0: &CollectClassNamesResponse<'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: &CollectClassNamesResponse<'a>) -> bool[src]
This method tests for !=.
impl<'a> CdpCommand for CollectClassNamesResponse<'a>[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "CSS.collectClassNames"