pub struct TaskTimedOutEventDetails {
pub cause: Option<String>,
pub error: Option<String>,
pub resource: String,
pub resource_type: String,
}
Expand description
Contains details about a resource timeout that occurred 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.
resource: String
The service name of the resource in a task state.
resource_type: String
The action of the resource called by a task state.
Trait Implementations§
Source§impl Clone for TaskTimedOutEventDetails
impl Clone for TaskTimedOutEventDetails
Source§fn clone(&self) -> TaskTimedOutEventDetails
fn clone(&self) -> TaskTimedOutEventDetails
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 Debug for TaskTimedOutEventDetails
impl Debug for TaskTimedOutEventDetails
Source§impl Default for TaskTimedOutEventDetails
impl Default for TaskTimedOutEventDetails
Source§fn default() -> TaskTimedOutEventDetails
fn default() -> TaskTimedOutEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskTimedOutEventDetails
impl<'de> Deserialize<'de> for TaskTimedOutEventDetails
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 TaskTimedOutEventDetails
impl PartialEq for TaskTimedOutEventDetails
impl StructuralPartialEq for TaskTimedOutEventDetails
Auto Trait Implementations§
impl Freeze for TaskTimedOutEventDetails
impl RefUnwindSafe for TaskTimedOutEventDetails
impl Send for TaskTimedOutEventDetails
impl Sync for TaskTimedOutEventDetails
impl Unpin for TaskTimedOutEventDetails
impl UnwindSafe for TaskTimedOutEventDetails
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