pub enum HttpSignatureParamAnnotation {
Optional,
Flatten,
Path {
name: String,
},
Query {
name: String,
},
Header {
name: String,
},
Cookie {
name: String,
},
Body,
}Variants§
Trait Implementations§
Source§impl Clone for HttpSignatureParamAnnotation
impl Clone for HttpSignatureParamAnnotation
Source§fn clone(&self) -> HttpSignatureParamAnnotation
fn clone(&self) -> HttpSignatureParamAnnotation
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 HttpSignatureParamAnnotation
impl Debug for HttpSignatureParamAnnotation
Source§impl<'de> Deserialize<'de> for HttpSignatureParamAnnotation
impl<'de> Deserialize<'de> for HttpSignatureParamAnnotation
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 HttpSignatureParamAnnotation
impl PartialEq for HttpSignatureParamAnnotation
Source§fn eq(&self, other: &HttpSignatureParamAnnotation) -> bool
fn eq(&self, other: &HttpSignatureParamAnnotation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for HttpSignatureParamAnnotation
impl StructuralPartialEq for HttpSignatureParamAnnotation
Auto Trait Implementations§
impl Freeze for HttpSignatureParamAnnotation
impl RefUnwindSafe for HttpSignatureParamAnnotation
impl Send for HttpSignatureParamAnnotation
impl Sync for HttpSignatureParamAnnotation
impl Unpin for HttpSignatureParamAnnotation
impl UnsafeUnpin for HttpSignatureParamAnnotation
impl UnwindSafe for HttpSignatureParamAnnotation
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