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