Struct chrome_remote_interface_model::network::CookieParamBuilder[][src]

pub struct CookieParamBuilder { /* fields omitted */ }
This is supported on crate features Network and Debugger and Runtime and Security only.

Implementations

impl CookieParamBuilder[src]

pub fn name(&mut self, v: String) -> &mut Self[src]

Cookie name.

pub fn value(&mut self, v: String) -> &mut Self[src]

Cookie value.

pub fn url(&mut self, v: String) -> &mut Self[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(&mut self, v: String) -> &mut Self[src]

Cookie domain.

pub fn path(&mut self, v: String) -> &mut Self[src]

Cookie path.

pub fn secure(&mut self, v: bool) -> &mut Self[src]

True if cookie is secure.

pub fn http_only(&mut self, v: bool) -> &mut Self[src]

True if cookie is http-only.

pub fn same_site(&mut self, v: CookieSameSite) -> &mut Self[src]

Cookie SameSite type.

pub fn expires(&mut self, v: TimeSinceEpoch) -> &mut Self[src]

Cookie expiration date, session cookie if not set

pub fn priority(&mut self, v: JsonValue) -> &mut Self[src]

This is supported on crate feature experimental only.

Cookie Priority.

pub fn build(&mut self) -> Result<CookieParam, &'static str>[src]

Trait Implementations

impl Clone for CookieParamBuilder[src]

impl Debug for CookieParamBuilder[src]

impl Default for CookieParamBuilder[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> 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.