http_constant/constant/
method.rs

1/// GET
2pub static GET: &str = "GET";
3
4/// POST
5pub static POST: &str = "POST";
6
7/// OPTIONS
8pub static OPTIONS: &str = "OPTIONS";
9
10/// The HTTP methods "GET" and "POST".
11pub static GET_POST: &str = "GET, POST";
12
13/// The HTTP methods "POST" and "GET".
14pub static POST_GET: &str = "POST, GET";
15
16/// The HTTP methods "GET" and "OPTIONS".
17pub static GET_OPTIONS: &str = "GET, OPTIONS";
18
19/// The HTTP methods "OPTIONS" and "GET".
20pub static OPTIONS_GET: &str = "OPTIONS, GET";
21
22/// The HTTP methods "POST" and "OPTIONS".
23pub static POST_OPTIONS: &str = "POST, OPTIONS";
24
25/// The HTTP methods "OPTIONS" and "POST".
26pub static OPTIONS_POST: &str = "OPTIONS, POST";
27
28/// The HTTP methods "GET", "POST", and "OPTIONS".
29pub static GET_POST_OPTIONS: &str = "GET, POST, OPTIONS";
30
31/// The HTTP methods "GET", "OPTIONS", and "POST".
32pub static GET_OPTIONS_POST: &str = "GET, OPTIONS, POST";
33
34/// The HTTP methods "POST", "GET", and "OPTIONS".
35pub static POST_GET_OPTIONS: &str = "POST, GET, OPTIONS";
36
37/// The HTTP methods "POST", "OPTIONS", and "GET".
38pub static POST_OPTIONS_GET: &str = "POST, OPTIONS, GET";
39
40/// The HTTP methods "OPTIONS", "GET", and "POST".
41pub static OPTIONS_GET_POST: &str = "OPTIONS, GET, POST";
42
43/// The HTTP methods "OPTIONS", "POST", and "GET".
44pub static OPTIONS_POST_GET: &str = "OPTIONS, POST, GET";