pub type QueryPairKey<'q> = Cow<'q, str>;
HTTP 查询参数名
enum QueryPairKey<'q> { Borrowed(&'q str), Owned(String), }
Borrowed data.
Owned data.