Struct cdp::network::SetCookieResponse [] [src]

pub struct SetCookieResponse {
    pub success: bool,
}

[Experimental] Sets a cookie with the given cookie data; may overwrite equivalent cookies if they exist.

Command Network.setCookie

Domain Module: cdp::network
Command Struct: cdp::network::SetCookieCommand
Response Struct: cdp::network::SetCookieResponse

Fields

True if successfully set cookie.

Trait Implementations

impl Clone for SetCookieResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SetCookieResponse
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for SetCookieResponse
[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 CdpCommand for SetCookieResponse
[src]

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

impl<'a> HasCdpCommand<'a> for SetCookieResponse
[src]