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