pub enum CookieAttributeName {
Value(String),
Expires(String),
MaxAge(String),
Domain(String),
Path(String),
Secure(String),
HttpOnly(String),
SameSite(String),
}Variants§
Value(String)
Expires(String)
MaxAge(String)
Domain(String)
Path(String)
Secure(String)
HttpOnly(String)
SameSite(String)
Implementations§
Trait Implementations§
Source§impl Clone for CookieAttributeName
impl Clone for CookieAttributeName
Source§fn clone(&self) -> CookieAttributeName
fn clone(&self) -> CookieAttributeName
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 CookieAttributeName
impl Debug for CookieAttributeName
impl Eq for CookieAttributeName
Source§impl PartialEq for CookieAttributeName
impl PartialEq for CookieAttributeName
impl StructuralPartialEq for CookieAttributeName
Auto Trait Implementations§
impl Freeze for CookieAttributeName
impl RefUnwindSafe for CookieAttributeName
impl Send for CookieAttributeName
impl Sync for CookieAttributeName
impl Unpin for CookieAttributeName
impl UnsafeUnpin for CookieAttributeName
impl UnwindSafe for CookieAttributeName
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