Struct chrome_remote_interface_model::network::Cookie[][src]

pub struct Cookie { /* fields omitted */ }

Cookie object

Implementations

impl Cookie[src]

pub fn builder() -> CookieBuilder[src]

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

Cookie name.

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

Cookie value.

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

Cookie domain.

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

Cookie path.

pub fn expires(&self) -> f64[src]

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

pub fn size(&self) -> u32[src]

Cookie size.

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

True if cookie is http-only.

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

True if cookie is secure.

pub fn session(&self) -> bool[src]

True in case of session cookie.

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

Cookie SameSite type.

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

Cookie Priority

Trait Implementations

impl Clone for Cookie[src]

impl Debug for Cookie[src]

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

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