pub type BodyParams<'a> = Option<Vec<(&'a str, &'a str)>>;
enum BodyParams<'a> { None, Some(Vec<(&'a str, &'a str)>), }
No value.
Some value of type T.
T