Struct cdp::page::DeleteCookieCommand [] [src]

pub struct DeleteCookieCommand<'a> {
    pub cookie_name: Cow<'a, str>,
    pub url: Cow<'a, str>,
}

[Experimental] Deletes browser cookie with given name, domain and path.

Command Page.deleteCookie

Domain Module: cdp::page
Command Struct: cdp::page::DeleteCookieCommand
Response Struct: cdp::page::DeleteCookieResponse

Fields

Name of the cookie to remove.

URL to match cooke domain and path.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

COMMAND_NAME: &'static str = "Page.deleteCookie"

impl<'a> SerializeCdpCommand for DeleteCookieCommand<'a>
[src]

[src]

[src]

impl<'de, 'a> DeserializeCdpCommand<'de> for DeleteCookieCommand<'a>
[src]

[src]

impl<'b, 'a> HasCdpResponse<'b> for DeleteCookieCommand<'a>
[src]