Struct chrome_remote_interface_model::network::SetCookieCommand[][src]

pub struct SetCookieCommand { /* fields omitted */ }

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

Implementations

impl SetCookieCommand[src]

pub fn builder() -> SetCookieCommandBuilder[src]

pub fn name(&self) -> &str[src]

Cookie name.

pub fn value(&self) -> &str[src]

Cookie value.

pub fn url(&self) -> Option<&String>[src]

The request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie.

pub fn domain(&self) -> Option<&String>[src]

Cookie domain.

pub fn path(&self) -> Option<&String>[src]

Cookie path.

pub fn secure(&self) -> Option<&bool>[src]

True if cookie is secure.

pub fn http_only(&self) -> Option<&bool>[src]

True if cookie is http-only.

pub fn same_site(&self) -> Option<&CookieSameSite>[src]

Cookie SameSite type.

pub fn expires(&self) -> Option<&TimeSinceEpoch>[src]

Cookie expiration date, session cookie if not set

pub fn priority(&self) -> Option<&JsonValue>[src]

Cookie Priority type.

Trait Implementations

impl Clone for SetCookieCommand[src]

impl Command for SetCookieCommand[src]

type Return = SetCookieReturn

Return type.

impl Debug for SetCookieCommand[src]

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

impl Serialize for SetCookieCommand[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> 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.