Struct chromiumoxide::cdp::browser_protocol::network::DeleteCookiesParams[][src]

pub struct DeleteCookiesParams {
    pub name: String,
    pub url: Option<String>,
    pub domain: Option<String>,
    pub path: Option<String>,
}

Deletes browser cookies with matching name and url or domain/path pair. deleteCookies

Fields

name: String

Name of the cookies to remove.

url: Option<String>

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

domain: Option<String>

If specified, deletes only cookies with the exact domain.

path: Option<String>

If specified, deletes only cookies with the exact path.

Implementations

impl DeleteCookiesParams[src]

Create a new instance from a CookieParam

impl DeleteCookiesParams[src]

pub fn new(name: impl Into<String>) -> DeleteCookiesParams[src]

impl DeleteCookiesParams[src]

impl DeleteCookiesParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for DeleteCookiesParams[src]

impl Command for DeleteCookiesParams[src]

type Response = DeleteCookiesReturns

The type of the response this request triggers on the chromium server

impl Debug for DeleteCookiesParams[src]

impl<'de> Deserialize<'de> for DeleteCookiesParams[src]

impl<T> From<T> for DeleteCookiesParams where
    T: Into<String>, 
[src]

impl Method for DeleteCookiesParams[src]

impl MethodType for DeleteCookiesParams[src]

impl PartialEq<DeleteCookiesParams> for DeleteCookiesParams[src]

impl Serialize for DeleteCookiesParams[src]

impl StructuralPartialEq for DeleteCookiesParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,