Struct chrome_remote_interface_model::network::CookieBuilder[][src]

pub struct CookieBuilder { /* fields omitted */ }

Implementations

impl CookieBuilder[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 domain(&mut self, v: String) -> &mut Self[src]

Cookie domain.

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

Cookie path.

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

Cookie expiration date as the number of seconds since the UNIX epoch.

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

Cookie size.

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

True if cookie is http-only.

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

True if cookie is secure.

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

True in case of session cookie.

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

Cookie SameSite type.

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

Cookie Priority

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

Trait Implementations

impl Clone for CookieBuilder[src]

impl Debug for CookieBuilder[src]

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