pub struct Cookie {
pub http_only: bool,
pub domain: String,
pub include_subdomains: bool,
pub path: String,
pub secure: bool,
pub expires: CookieExpires,
pub name: String,
pub value: String,
}Fields§
§http_only: bool§domain: String§include_subdomains: bool§path: String§secure: bool§expires: CookieExpires§name: String§value: StringTrait 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 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