http_type

Type Alias RequestMethod

Source
pub type RequestMethod = Cow<'static, str>;
Expand description

RequestMethod

Aliased Type§

enum RequestMethod {
    Borrowed(&'static str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'static str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.