pub struct HttpRequestMapping {
pub path: Vec<HttpInputBinding>,
pub query: Vec<HttpInputBinding>,
pub header: Vec<HttpInputBinding>,
pub cookie: Vec<HttpInputBinding>,
pub body: HttpRequestBodyMapping,
}Fields§
§path: Vec<HttpInputBinding>§query: Vec<HttpInputBinding>§header: Vec<HttpInputBinding>§body: HttpRequestBodyMappingTrait Implementations§
Source§impl Clone for HttpRequestMapping
impl Clone for HttpRequestMapping
Source§fn clone(&self) -> HttpRequestMapping
fn clone(&self) -> HttpRequestMapping
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 HttpRequestMapping
impl Debug for HttpRequestMapping
Source§impl<'de> Deserialize<'de> for HttpRequestMapping
impl<'de> Deserialize<'de> for HttpRequestMapping
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
Auto Trait Implementations§
impl Freeze for HttpRequestMapping
impl RefUnwindSafe for HttpRequestMapping
impl Send for HttpRequestMapping
impl Sync for HttpRequestMapping
impl Unpin for HttpRequestMapping
impl UnsafeUnpin for HttpRequestMapping
impl UnwindSafe for HttpRequestMapping
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