use crate::*;
/// The raw cookie string from the HTTP request header.
pub type CookieString = String;
/// Key type used in the request cookies.
pub type CookieKey = String;
/// Value type used in the request cookies.
pub type CookieValue = String;
/// Optional value for a cookie.
pub type OptionCookiesValue = ;
/// Optional expiration date string for a cookie.
pub type OptionCookieExpires = ;
/// Optional maximum age in seconds for a cookie.
pub type OptionCookieMaxAge = ;
/// Optional domain for a cookie.
pub type OptionCookieDomain = ;
/// Optional path for a cookie.
pub type OptionCookiePath = ;
/// Optional SameSite policy for a cookie.
pub type OptionCookieSameSite = ;
// A collection of cookies.
pub type Cookies = ;