pub type OptionCookiesValue = Option<String>;
Represents an optional cookie value.
Used when a cookie value may or may not be present.
pub enum OptionCookiesValue { None, Some(String), }
No value.
Some value of type T.
T