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: PartsThe header of the request sent to invoke the Lambda function.
body: BytesThe body of the request sent to invoke the Lambda function.
context: ContextThe context of the Lambda invocation.
Trait Implementations§
Source§impl<S> Service<LambdaInvocation> for TracingService<S>
impl<S> Service<LambdaInvocation> for TracingService<S>
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