1 2 3 4 5 6 7 8
/// Cookie error #[derive(Debug)] pub enum CookieError { /// Cookie does not contain a `=` separator IrregularCookie, /// Cookie has an empty name MissingName, }