pub enum PayoutInstructionState {
NotStarted,
TransactionSent,
Completed,
Failed,
TranslationError,
Skipped,
}
Expand description
PayoutInstructionState : - NOT_STARTED - waiting to start - TRANSACTION_SENT
- an underlying transaction was sent - COMPLETED - completed successfully - FAILED - failed - TRANSLATION_ERROR -lookup of the destination failed (due to changes in the underlying whitelisted external wallet or similar) - SKIPPED- no transaction(s) created for this instruction
- NOT_STARTED - waiting to start - TRANSACTION_SENT - an underlying transaction was sent - COMPLETED - completed successfully - FAILED - failed - TRANSLATION_ERROR -lookup of the destination failed (due to changes in the underlying whitelisted external wallet or similar) - SKIPPED- no transaction(s) created for this instruction
Variants§
Trait Implementations§
Source§impl Clone for PayoutInstructionState
impl Clone for PayoutInstructionState
Source§fn clone(&self) -> PayoutInstructionState
fn clone(&self) -> PayoutInstructionState
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 PayoutInstructionState
impl Debug for PayoutInstructionState
Source§impl Default for PayoutInstructionState
impl Default for PayoutInstructionState
Source§fn default() -> PayoutInstructionState
fn default() -> PayoutInstructionState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayoutInstructionState
impl<'de> Deserialize<'de> for PayoutInstructionState
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 Display for PayoutInstructionState
impl Display for PayoutInstructionState
Source§impl Hash for PayoutInstructionState
impl Hash for PayoutInstructionState
Source§impl Ord for PayoutInstructionState
impl Ord for PayoutInstructionState
Source§fn cmp(&self, other: &PayoutInstructionState) -> Ordering
fn cmp(&self, other: &PayoutInstructionState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PayoutInstructionState
impl PartialEq for PayoutInstructionState
Source§impl PartialOrd for PayoutInstructionState
impl PartialOrd for PayoutInstructionState
Source§impl Serialize for PayoutInstructionState
impl Serialize for PayoutInstructionState
impl Copy for PayoutInstructionState
impl Eq for PayoutInstructionState
impl StructuralPartialEq for PayoutInstructionState
Auto Trait Implementations§
impl Freeze for PayoutInstructionState
impl RefUnwindSafe for PayoutInstructionState
impl Send for PayoutInstructionState
impl Sync for PayoutInstructionState
impl Unpin for PayoutInstructionState
impl UnwindSafe for PayoutInstructionState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.