pub enum Method {
Get,
Head,
Post,
Put,
Delete,
Connect,
Options,
Trace,
Patch,
NonStandard(AsciiString),
}Variants
Get
GET
Head
HEAD
Post
POST
Put
PUT
Delete
DELETE
Connect
CONNECT
Options
OPTIONS
Trace
TRACE
Patch
PATCH
NonStandard(AsciiString)
Tuple Fields
0: AsciiStringRequest methods not standardized by the IETF
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Method
impl UnwindSafe for Method
Blanket Implementations
Mutably borrows from an owned value. Read more
