Struct cdp::css::GetStyleSheetTextResponse
[−]
[src]
pub struct GetStyleSheetTextResponse<'a> { pub text: Cow<'a, str>, }
[Experimental] Returns the current textual content and the URL for a stylesheet.
Command CSS.getStyleSheetText
Domain Module: cdp::css
Command Struct: cdp::css::GetStyleSheetTextCommand
Response Struct: cdp::css::GetStyleSheetTextResponse
Fields
text: Cow<'a, str>
The stylesheet text.
Trait Implementations
impl<'a> Clone for GetStyleSheetTextResponse<'a>
[src]
fn clone(&self) -> GetStyleSheetTextResponse<'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 GetStyleSheetTextResponse<'a>
[src]
impl<'a> PartialEq for GetStyleSheetTextResponse<'a>
[src]
fn eq(&self, __arg_0: &GetStyleSheetTextResponse<'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: &GetStyleSheetTextResponse<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpCommand for GetStyleSheetTextResponse<'a>
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "CSS.getStyleSheetText"