1#[derive(Debug, Default)] 2pub enum HttpMethod { 3 #[default] 4 GET, 5 POST, 6 PUT, 7 DELETE, 8 PATCH, 9 HEAD, 10 OPTIONS, 11 CONNECT, 12 TRACE, 13}