1 2 3 4 5 6 7 8 9 10 11 12 13
use hyper::Method; pub(crate) const ALL_POSSIBLE_HTTP_METHODS: [Method; 9] = [ Method::GET, Method::POST, Method::PUT, Method::PATCH, Method::DELETE, Method::CONNECT, Method::HEAD, Method::OPTIONS, Method::TRACE, ];