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