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