()
| 31 | } |
| 32 | |
| 33 | pub fn all() -> &'static [HttpMethod] { |
| 34 | &[ |
| 35 | HttpMethod::Get, |
| 36 | HttpMethod::Post, |
| 37 | HttpMethod::Put, |
| 38 | HttpMethod::Delete, |
| 39 | HttpMethod::Patch, |
| 40 | HttpMethod::Head, |
| 41 | HttpMethod::Options, |
| 42 | ] |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | impl std::fmt::Display for HttpMethod { |
nothing calls this directly
no outgoing calls
no test coverage detected