pub type OptionCookieExpires = Option<String>;
Represents an optional cookie expiration date.
Stores the RFC 1123 formatted date string when present.
pub enum OptionCookieExpires { None, Some(String), }
No value.
Some value of type T.
T