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

The stylesheet text.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "CSS.getStyleSheetText"

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