pub struct ApiGatewayV2Request {
pub request_id: String,
pub api_id: String,
pub stage: String,
pub method: String,
pub path: String,
pub headers: HashMap<String, String>,
pub query_params: HashMap<String, String>,
pub body: Option<String>,
pub timestamp: String,
pub status_code: u16,
}Fields§
§request_id: String§api_id: String§stage: String§method: String§path: String§headers: HashMap<String, String>§query_params: HashMap<String, String>§body: Option<String>§timestamp: String§status_code: u16Trait Implementations§
Source§impl Clone for ApiGatewayV2Request
impl Clone for ApiGatewayV2Request
Source§fn clone(&self) -> ApiGatewayV2Request
fn clone(&self) -> ApiGatewayV2Request
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 ApiGatewayV2Request
impl Debug for ApiGatewayV2Request
Source§impl<'de> Deserialize<'de> for ApiGatewayV2Request
impl<'de> Deserialize<'de> for ApiGatewayV2Request
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 ApiGatewayV2Request
impl RefUnwindSafe for ApiGatewayV2Request
impl Send for ApiGatewayV2Request
impl Sync for ApiGatewayV2Request
impl Unpin for ApiGatewayV2Request
impl UnsafeUnpin for ApiGatewayV2Request
impl UnwindSafe for ApiGatewayV2Request
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