Struct chrome_remote_interface_model::network::Cookie [−][src]
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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for Cookie[src]
Auto Trait Implementations
impl RefUnwindSafe for Cookie[src]
impl Send for Cookie[src]
impl Sync for Cookie[src]
impl Unpin for Cookie[src]
impl UnwindSafe for Cookie[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,