pub enum LoopTerminalStatus {
Completed,
Cancelled,
Failed,
}Expand description
Enumerates the finite loop 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.
Cancelled
Use this variant when the contract needs to represent cancelled; 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.
Trait Implementations§
Source§impl Clone for LoopTerminalStatus
impl Clone for LoopTerminalStatus
Source§fn clone(&self) -> LoopTerminalStatus
fn clone(&self) -> LoopTerminalStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LoopTerminalStatus
impl Debug for LoopTerminalStatus
Source§impl<'de> Deserialize<'de> for LoopTerminalStatus
impl<'de> Deserialize<'de> for LoopTerminalStatus
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 Hash for LoopTerminalStatus
impl Hash for LoopTerminalStatus
Source§impl PartialEq for LoopTerminalStatus
impl PartialEq for LoopTerminalStatus
Source§fn eq(&self, other: &LoopTerminalStatus) -> bool
fn eq(&self, other: &LoopTerminalStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LoopTerminalStatus
impl Serialize for LoopTerminalStatus
impl Copy for LoopTerminalStatus
impl Eq for LoopTerminalStatus
impl StructuralPartialEq for LoopTerminalStatus
Auto Trait Implementations§
impl Freeze for LoopTerminalStatus
impl RefUnwindSafe for LoopTerminalStatus
impl Send for LoopTerminalStatus
impl Sync for LoopTerminalStatus
impl Unpin for LoopTerminalStatus
impl UnsafeUnpin for LoopTerminalStatus
impl UnwindSafe for LoopTerminalStatus
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