Struct cdp::network::DeleteCookiesCommand [] [src]

pub struct DeleteCookiesCommand<'a> {
    pub name: Cow<'a, str>,
    pub url: Option<Cow<'a, str>>,
    pub domain: Option<Cow<'a, str>>,
    pub path: Option<Cow<'a, str>>,
}

[Experimental] Deletes browser cookies with matching name and url or domain/path pair.

Command Network.deleteCookies

Domain Module: cdp::network
Command Struct: cdp::network::DeleteCookiesCommand
Response Struct: cdp::network::DeleteCookiesResponse

Fields

Name of the cookies to remove.

If specified, deletes all the cookies with the given name where domain and path match provided URL.

If specified, deletes only cookies with the exact domain.

If specified, deletes only cookies with the exact path.

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

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

[src]

[src]

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

[src]

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