pub struct Cookie {
pub name: String,
pub value: String,
pub domain: String,
pub path: String,
pub expires_utc: i64,
pub is_secure: bool,
pub is_httponly: bool,
pub same_site: i32,
}Fields§
§name: String§value: String§domain: String§path: String§expires_utc: i64§is_secure: bool§is_httponly: bool§same_site: i32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cookie
impl RefUnwindSafe for Cookie
impl Send for Cookie
impl Sync for Cookie
impl Unpin for Cookie
impl UnsafeUnpin 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