1 pub mod http_method_name { 2 pub const OPTIONS: &str = "OPTIONS"; 3 pub const PATCH: &str = "PATCH"; 4 pub const POST: &str = "POST"; 5 pub const DELETE: &str = "DELETE"; 6 pub const GET: &str = "GET"; 7 } 8