pub const ANY: MethodGuard;
Expand description
A MethodGuard
that matches incoming requests with a well-known HTTP method:
CONNECT
, DELETE
, GET
, HEAD
, PATCH
, POST
, PUT
, OPTIONS
, TRACE
.
If you want to allow custom HTTP methods in addition to well-known ones,
use ANY_WITH_EXTENSIONS
.