Type Alias QueryPairKey

Source
pub type QueryPairKey<'q> = Cow<'q, str>;
Expand description

HTTP 查询参数名

Aliased Type§

enum QueryPairKey<'q> {
    Borrowed(&'q str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'q str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.