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