Struct cdp::network::GetResponseBodyResponse [] [src]

pub struct GetResponseBodyResponse<'a> {
    pub body: Cow<'a, str>,
    pub base_64_encoded: bool,
}

Returns content served for the given request.

Command Network.getResponseBody

Domain Module: cdp::network
Command Struct: cdp::network::GetResponseBodyCommand
Response Struct: cdp::network::GetResponseBodyResponse

Fields

Response body.

True, if content was sent as base64.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Network.getResponseBody"

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