pub enum HttpMethodType {
HttpMethodGet,
HttpMethodPut,
HttpMethodPost,
HttpMethodDelete,
HttpMethodHead,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for HttpMethodType
impl Clone for HttpMethodType
Source§fn clone(&self) -> HttpMethodType
fn clone(&self) -> HttpMethodType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HttpMethodType
impl Debug for HttpMethodType
Source§impl Default for HttpMethodType
impl Default for HttpMethodType
Source§fn default() -> HttpMethodType
fn default() -> HttpMethodType
Returns the “default value” for a type. Read more
Source§impl Display for HttpMethodType
impl Display for HttpMethodType
Source§impl From<&HttpMethodType> for HttpMethodType
impl From<&HttpMethodType> for HttpMethodType
Source§fn from(value: &HttpMethodType) -> Self
fn from(value: &HttpMethodType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HttpMethodType
impl PartialEq for HttpMethodType
impl StructuralPartialEq for HttpMethodType
Auto Trait Implementations§
impl Freeze for HttpMethodType
impl RefUnwindSafe for HttpMethodType
impl Send for HttpMethodType
impl Sync for HttpMethodType
impl Unpin for HttpMethodType
impl UnsafeUnpin for HttpMethodType
impl UnwindSafe for HttpMethodType
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