pub enum ExecutionEventType {
Show 14 variants
Started,
ActivityScheduled,
ActivityStarted,
ActivityCompleted,
ActivityFailed,
DecisionMade,
TimerScheduled,
TimerFired,
SignalReceived,
WorkflowCompleted,
WorkflowFailed,
WorkflowCancelled,
CompensationStarted,
CompensationCompleted,
}
Expand description
実行イベント種別
Variants§
Started
ActivityScheduled
ActivityStarted
ActivityCompleted
ActivityFailed
DecisionMade
TimerScheduled
TimerFired
SignalReceived
WorkflowCompleted
WorkflowFailed
WorkflowCancelled
CompensationStarted
CompensationCompleted
Trait Implementations§
Source§impl Clone for ExecutionEventType
impl Clone for ExecutionEventType
Source§fn clone(&self) -> ExecutionEventType
fn clone(&self) -> ExecutionEventType
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 ExecutionEventType
impl Debug for ExecutionEventType
Source§impl<'de> Deserialize<'de> for ExecutionEventType
impl<'de> Deserialize<'de> for ExecutionEventType
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
Auto Trait Implementations§
impl Freeze for ExecutionEventType
impl RefUnwindSafe for ExecutionEventType
impl Send for ExecutionEventType
impl Sync for ExecutionEventType
impl Unpin for ExecutionEventType
impl UnwindSafe for ExecutionEventType
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