Struct chrome_remote_interface_model::network::SetCookieCommandBuilder [−][src]
Implementations
impl SetCookieCommandBuilder[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]
Cookie Priority type.
pub fn build(&mut self) -> Result<SetCookieCommand, &'static str>[src]
Trait Implementations
impl Clone for SetCookieCommandBuilder[src]
fn clone(&self) -> SetCookieCommandBuilder[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SetCookieCommandBuilder[src]
impl Default for SetCookieCommandBuilder[src]
Auto Trait Implementations
impl RefUnwindSafe for SetCookieCommandBuilder[src]
impl Send for SetCookieCommandBuilder[src]
impl Sync for SetCookieCommandBuilder[src]
impl Unpin for SetCookieCommandBuilder[src]
impl UnwindSafe for SetCookieCommandBuilder[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> 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>,