pub enum Verb {
Get,
Post,
Put,
Delete,
Head,
Options,
Patch,
Connect,
Trace,
}Expand description
Supported HTTP verbs.
Variants§
Get
HTTP GET.
Post
HTTP POST.
Put
HTTP PUT.
Delete
HTTP DELETE.
Head
HTTP HEAD.
Options
HTTP OPTIONS.
Patch
HTTP PATCH.
Connect
HTTP CONNECT.
Trace
HTTP TRACE.
Auto Trait Implementations§
impl Freeze for Verb
impl RefUnwindSafe for Verb
impl Send for Verb
impl Sync for Verb
impl Unpin for Verb
impl UnwindSafe for Verb
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more