Struct chrome_remote_interface_model::network::CookieParam [−][src]
Cookie parameter object
Implementations
impl CookieParam[src]
pub fn builder() -> CookieParamBuilder[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.
Trait Implementations
impl Clone for CookieParam[src]
fn clone(&self) -> CookieParam[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CookieParam[src]
impl<'de> Deserialize<'de> for CookieParam[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for CookieParam[src]
Auto Trait Implementations
impl RefUnwindSafe for CookieParam[src]
impl Send for CookieParam[src]
impl Sync for CookieParam[src]
impl Unpin for CookieParam[src]
impl UnwindSafe for CookieParam[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>,