pub enum RequestType {
Get,
Head,
Post,
Put,
Delete,
Connect,
Options,
Trace,
Patch,
}Expand description
Crucial part of the request signature, Explains which type of request should be handled
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for RequestType
impl Debug for RequestType
impl Eq for RequestType
Source§impl Hash for RequestType
impl Hash for RequestType
Source§impl PartialEq for RequestType
impl PartialEq for RequestType
impl StructuralPartialEq for RequestType
Auto Trait Implementations§
impl Freeze for RequestType
impl RefUnwindSafe for RequestType
impl Send for RequestType
impl Sync for RequestType
impl Unpin for RequestType
impl UnsafeUnpin for RequestType
impl UnwindSafe for RequestType
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