pub struct WebViewCookie {
pub name: String,
pub value: String,
pub domain: String,
pub path: String,
pub host_only: bool,
pub secure: bool,
pub http_only: bool,
pub session: bool,
pub expires_unix_ms: Option<i64>,
pub same_site: Option<WebViewCookieSameSite>,
}Fields§
§name: String§value: String§domain: String§path: String§host_only: bool§secure: bool§http_only: bool§session: bool§expires_unix_ms: Option<i64>§same_site: Option<WebViewCookieSameSite>Trait Implementations§
Source§impl Clone for WebViewCookie
impl Clone for WebViewCookie
Source§fn clone(&self) -> WebViewCookie
fn clone(&self) -> WebViewCookie
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 WebViewCookie
impl Debug for WebViewCookie
Source§impl<'de> Deserialize<'de> for WebViewCookie
impl<'de> Deserialize<'de> for WebViewCookie
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 WebViewCookie
Source§impl PartialEq for WebViewCookie
impl PartialEq for WebViewCookie
Source§fn eq(&self, other: &WebViewCookie) -> bool
fn eq(&self, other: &WebViewCookie) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WebViewCookie
impl Serialize for WebViewCookie
impl StructuralPartialEq for WebViewCookie
Auto Trait Implementations§
impl Freeze for WebViewCookie
impl RefUnwindSafe for WebViewCookie
impl Send for WebViewCookie
impl Sync for WebViewCookie
impl Unpin for WebViewCookie
impl UnsafeUnpin for WebViewCookie
impl UnwindSafe for WebViewCookie
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