http_type/cookie/type.rs
1/// The raw cookie string from the HTTP request header.
2pub type CookieString = String;
3/// Key type used in the request cookies.
4pub type CookieKey = String;
5/// Value type used in the request cookies.
6pub type CookieValue = String;
7/// Optional value for a cookie.
8pub type OptionCookiesValue = Option<CookieValue>;
9/// Optional expiration date string for a cookie.
10pub type OptionCookieExpires = Option<String>;
11/// Optional maximum age in seconds for a cookie.
12pub type OptionCookieMaxAge = Option<i64>;
13/// Optional domain for a cookie.
14pub type OptionCookieDomain = Option<String>;
15/// Optional path for a cookie.
16pub type OptionCookiePath = Option<String>;
17/// Optional SameSite policy for a cookie.
18pub type OptionCookieSameSite = Option<String>;