pub enum EffectTerminalStatus {
Completed,
Failed,
TimedOut,
Cancelled,
DeniedBeforeExecution,
Unknown,
}Expand description
Enumerates the finite effect terminal status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Completed
Use this variant when the contract needs to represent completed; selecting it has no side effect by itself.
Failed
Use this variant when the contract needs to represent failed; selecting it has no side effect by itself.
TimedOut
Use this variant when the contract needs to represent timed out; selecting it has no side effect by itself.
Cancelled
Use this variant when the contract needs to represent cancelled; selecting it has no side effect by itself.
DeniedBeforeExecution
Use this variant when the contract needs to represent denied before execution; selecting it has no side effect by itself.
Unknown
Use this variant when the contract needs to represent unknown; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for EffectTerminalStatus
impl Clone for EffectTerminalStatus
Source§fn clone(&self) -> EffectTerminalStatus
fn clone(&self) -> EffectTerminalStatus
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EffectTerminalStatus
impl Debug for EffectTerminalStatus
Source§impl<'de> Deserialize<'de> for EffectTerminalStatus
impl<'de> Deserialize<'de> for EffectTerminalStatus
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>,
Source§impl PartialEq for EffectTerminalStatus
impl PartialEq for EffectTerminalStatus
Source§fn eq(&self, other: &EffectTerminalStatus) -> bool
fn eq(&self, other: &EffectTerminalStatus) -> bool
self and other values to be equal, and is used by ==.