Struct lambda_runtime::LambdaInvocation
source · pub struct LambdaInvocation {
pub parts: Parts,
pub body: Bytes,
pub context: Context,
}
Expand description
A simple container that provides information about a single invocation of a Lambda function.
Fields§
§parts: Parts
The header of the request sent to invoke the Lambda function.
body: Bytes
The body of the request sent to invoke the Lambda function.
context: Context
The context of the Lambda invocation.
Auto Trait Implementations§
impl !Freeze for LambdaInvocation
impl !RefUnwindSafe for LambdaInvocation
impl Send for LambdaInvocation
impl Sync for LambdaInvocation
impl Unpin for LambdaInvocation
impl !UnwindSafe for LambdaInvocation
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