http_constant/constant/protocol.rs
1/// A constant representing the "HTTP" protocol.
2pub static HTTP_UPPERCASE: &str = "HTTP";
3
4/// A constant representing the "HTTPS" protocol.
5pub static HTTPS_UPPERCASE: &str = "HTTPS";
6
7/// A constant representing the "http" protocol.
8pub static HTTP_LOWERCASE: &str = "http";
9
10/// A constant representing the "https" protocol.
11pub static HTTPS_LOWERCASE: &str = "https";
12
13/// Unknown HTTP version
14pub static UNKNOWN_HTTP_VERSION: &str = "";