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