pub type RequestMethod = Methods;Expand description
Request method
Aliased Type§
enum RequestMethod {
GET,
POST,
PUT,
DELETE,
PATCH,
HEAD,
OPTIONS,
CONNECT,
TRACE,
UNKNOWN(String),
}Variants§
GET
Represents the HTTP GET method.
POST
Represents the HTTP POST method.
PUT
Represents the HTTP PUT method.
DELETE
Represents the HTTP DELETE method.
PATCH
Represents the HTTP PATCH method.
HEAD
Represents the HTTP HEAD method.
OPTIONS
Represents the HTTP OPTIONS method.
CONNECT
Represents the HTTP CONNECT method.
TRACE
Represents the HTTP TRACE method.
UNKNOWN(String)
Unknown