pub enum HttpParamKind {
Path,
Query,
Header,
Cookie,
Body,
}Variants§
Trait Implementations§
Source§impl Clone for HttpParamKind
impl Clone for HttpParamKind
Source§fn clone(&self) -> HttpParamKind
fn clone(&self) -> HttpParamKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HttpParamKind
impl Debug for HttpParamKind
Source§impl<'de> Deserialize<'de> for HttpParamKind
impl<'de> Deserialize<'de> for HttpParamKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HttpParamKind
impl PartialEq for HttpParamKind
Source§fn eq(&self, other: &HttpParamKind) -> bool
fn eq(&self, other: &HttpParamKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HttpParamKind
impl Serialize for HttpParamKind
impl Copy for HttpParamKind
impl Eq for HttpParamKind
impl StructuralPartialEq for HttpParamKind
Auto Trait Implementations§
impl Freeze for HttpParamKind
impl RefUnwindSafe for HttpParamKind
impl Send for HttpParamKind
impl Sync for HttpParamKind
impl Unpin for HttpParamKind
impl UnsafeUnpin for HttpParamKind
impl UnwindSafe for HttpParamKind
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