pub struct Cookie {Show 13 fields
pub size: usize,
pub name: CefString,
pub value: CefString,
pub domain: CefString,
pub path: CefString,
pub secure: c_int,
pub httponly: c_int,
pub creation: Basetime,
pub last_access: Basetime,
pub has_expires: c_int,
pub expires: Basetime,
pub same_site: CookieSameSite,
pub priority: CookiePriority,
}
Expand description
See _cef_cookie_t
for more documentation.
Fields§
§size: usize
§name: CefString
§value: CefString
§domain: CefString
§path: CefString
§secure: c_int
§httponly: c_int
§creation: Basetime
§last_access: Basetime
§has_expires: c_int
§expires: Basetime
§same_site: CookieSameSite
§priority: CookiePriority
Trait Implementations§
Source§fn from(value: _cef_cookie_t) -> Self
fn from(value: _cef_cookie_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Cookie
impl RefUnwindSafe for Cookie
impl !Send for Cookie
impl !Sync for Cookie
impl Unpin for Cookie
impl UnwindSafe for Cookie
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