pub struct LambdaFunctionFailedEventDetails {
pub cause: Option<String>,
pub error: Option<String>,
}
Expand description
Contains details about a lambda function that failed during an execution.
Fields§
§cause: Option<String>
A more detailed explanation of the cause of the failure.
error: Option<String>
The error code of the failure.
Trait Implementations§
Source§impl Clone for LambdaFunctionFailedEventDetails
impl Clone for LambdaFunctionFailedEventDetails
Source§fn clone(&self) -> LambdaFunctionFailedEventDetails
fn clone(&self) -> LambdaFunctionFailedEventDetails
Returns a copy 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 moreSource§impl Default for LambdaFunctionFailedEventDetails
impl Default for LambdaFunctionFailedEventDetails
Source§fn default() -> LambdaFunctionFailedEventDetails
fn default() -> LambdaFunctionFailedEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionFailedEventDetails
impl<'de> Deserialize<'de> for LambdaFunctionFailedEventDetails
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
Source§impl PartialEq for LambdaFunctionFailedEventDetails
impl PartialEq for LambdaFunctionFailedEventDetails
Source§fn eq(&self, other: &LambdaFunctionFailedEventDetails) -> bool
fn eq(&self, other: &LambdaFunctionFailedEventDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionFailedEventDetails
Auto Trait Implementations§
impl Freeze for LambdaFunctionFailedEventDetails
impl RefUnwindSafe for LambdaFunctionFailedEventDetails
impl Send for LambdaFunctionFailedEventDetails
impl Sync for LambdaFunctionFailedEventDetails
impl Unpin for LambdaFunctionFailedEventDetails
impl UnwindSafe for LambdaFunctionFailedEventDetails
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