Struct ApiGatewayV2httpRequestContext
#[non_exhaustive]pub struct ApiGatewayV2httpRequestContext {
pub route_key: Option<String>,
pub account_id: Option<String>,
pub stage: Option<String>,
pub request_id: Option<String>,
pub authorizer: Option<ApiGatewayRequestAuthorizer>,
pub apiid: Option<String>,
pub domain_name: Option<String>,
pub domain_prefix: Option<String>,
pub time: Option<String>,
pub time_epoch: i64,
pub http: ApiGatewayV2httpRequestContextHttpDescription,
pub authentication: Option<ApiGatewayV2httpRequestContextAuthentication>,
}Available on crate feature
aws-lambda only.Expand description
ApiGatewayV2httpRequestContext contains the information to identify the AWS account and resources invoking the Lambda function.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.route_key: Option<String>§account_id: Option<String>§stage: Option<String>§request_id: Option<String>§apiid: Option<String>The API Gateway HTTP API Id
domain_name: Option<String>§domain_prefix: Option<String>§time: Option<String>§time_epoch: i64§http: ApiGatewayV2httpRequestContextHttpDescription§authentication: Option<ApiGatewayV2httpRequestContextAuthentication>Trait Implementations§
§impl Clone for ApiGatewayV2httpRequestContext
impl Clone for ApiGatewayV2httpRequestContext
§fn clone(&self) -> ApiGatewayV2httpRequestContext
fn clone(&self) -> ApiGatewayV2httpRequestContext
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 more§impl Debug for ApiGatewayV2httpRequestContext
impl Debug for ApiGatewayV2httpRequestContext
§impl Default for ApiGatewayV2httpRequestContext
impl Default for ApiGatewayV2httpRequestContext
§fn default() -> ApiGatewayV2httpRequestContext
fn default() -> ApiGatewayV2httpRequestContext
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for ApiGatewayV2httpRequestContext
impl<'de> Deserialize<'de> for ApiGatewayV2httpRequestContext
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApiGatewayV2httpRequestContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ApiGatewayV2httpRequestContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<P> FromParts<P> for ApiGatewayV2httpRequestContext
impl<P> FromParts<P> for ApiGatewayV2httpRequestContext
Source§type Rejection = MissingGatewayContextV2
type Rejection = MissingGatewayContextV2
The type of the extraction failures.
Source§fn from_parts(parts: &mut Parts) -> Result<Self, Self::Rejection>
fn from_parts(parts: &mut Parts) -> Result<Self, Self::Rejection>
Extracts
self from a [Parts] synchronously.§impl PartialEq for ApiGatewayV2httpRequestContext
impl PartialEq for ApiGatewayV2httpRequestContext
§impl Serialize for ApiGatewayV2httpRequestContext
impl Serialize for ApiGatewayV2httpRequestContext
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ApiGatewayV2httpRequestContext
impl StructuralPartialEq for ApiGatewayV2httpRequestContext
Auto Trait Implementations§
impl Freeze for ApiGatewayV2httpRequestContext
impl RefUnwindSafe for ApiGatewayV2httpRequestContext
impl Send for ApiGatewayV2httpRequestContext
impl Sync for ApiGatewayV2httpRequestContext
impl Unpin for ApiGatewayV2httpRequestContext
impl UnwindSafe for ApiGatewayV2httpRequestContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<B> IntoFunctionResponse<B, Body> for Bwhere
B: Serialize,
impl<B> IntoFunctionResponse<B, Body> for Bwhere
B: Serialize,
§fn into_response(self) -> FunctionResponse<B, Body>
fn into_response(self) -> FunctionResponse<B, Body>
Convert the type into a FunctionResponse.
Creates a shared type from an unshared type.