pub struct LambdaInvocation {
pub function_arn: String,
pub payload: String,
pub timestamp: DateTime<Utc>,
pub source: String,
}Expand description
A recorded Lambda invocation from cross-service delivery.
Fields§
§function_arn: String§payload: String§timestamp: DateTime<Utc>§source: StringTrait Implementations§
Source§impl Clone for LambdaInvocation
impl Clone for LambdaInvocation
Source§fn clone(&self) -> LambdaInvocation
fn clone(&self) -> LambdaInvocation
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 moreAuto Trait Implementations§
impl Freeze for LambdaInvocation
impl RefUnwindSafe for LambdaInvocation
impl Send for LambdaInvocation
impl Sync for LambdaInvocation
impl Unpin for LambdaInvocation
impl UnsafeUnpin 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