pub struct WebViewCookieSetRequest {
pub url: String,
pub name: String,
pub value: String,
pub domain: Option<String>,
pub path: String,
pub secure: bool,
pub http_only: bool,
pub expires_unix_ms: Option<i64>,
pub same_site: Option<WebViewCookieSameSite>,
}Fields§
§url: String§name: String§value: String§domain: Option<String>§path: String§secure: bool§http_only: bool§expires_unix_ms: Option<i64>§same_site: Option<WebViewCookieSameSite>Trait Implementations§
Source§impl Clone for WebViewCookieSetRequest
impl Clone for WebViewCookieSetRequest
Source§fn clone(&self) -> WebViewCookieSetRequest
fn clone(&self) -> WebViewCookieSetRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebViewCookieSetRequest
impl Debug for WebViewCookieSetRequest
Source§impl<'de> Deserialize<'de> for WebViewCookieSetRequest
impl<'de> Deserialize<'de> for WebViewCookieSetRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WebViewCookieSetRequest
Source§impl PartialEq for WebViewCookieSetRequest
impl PartialEq for WebViewCookieSetRequest
Source§fn eq(&self, other: &WebViewCookieSetRequest) -> bool
fn eq(&self, other: &WebViewCookieSetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WebViewCookieSetRequest
impl Serialize for WebViewCookieSetRequest
impl StructuralPartialEq for WebViewCookieSetRequest
Auto Trait Implementations§
impl Freeze for WebViewCookieSetRequest
impl RefUnwindSafe for WebViewCookieSetRequest
impl Send for WebViewCookieSetRequest
impl Sync for WebViewCookieSetRequest
impl Unpin for WebViewCookieSetRequest
impl UnsafeUnpin for WebViewCookieSetRequest
impl UnwindSafe for WebViewCookieSetRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more