pub enum WalletSagaState {
Send(SendSagaState),
Receive(ReceiveSagaState),
Swap(SwapSagaState),
Issue(IssueSagaState),
Melt(MeltSagaState),
}Expand description
Wallet saga state for different operation types
Variants§
Send(SendSagaState)
Send saga states
Receive(ReceiveSagaState)
Receive saga states
Swap(SwapSagaState)
Swap saga states
Issue(IssueSagaState)
Mint (issue) saga states
Melt(MeltSagaState)
Melt saga states
Implementations§
Trait Implementations§
Source§impl Clone for WalletSagaState
impl Clone for WalletSagaState
Source§fn clone(&self) -> WalletSagaState
fn clone(&self) -> WalletSagaState
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 WalletSagaState
impl Debug for WalletSagaState
Source§impl<'de> Deserialize<'de> for WalletSagaState
impl<'de> Deserialize<'de> for WalletSagaState
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 WalletSagaState
impl Hash for WalletSagaState
Source§impl PartialEq for WalletSagaState
impl PartialEq for WalletSagaState
Source§impl Serialize for WalletSagaState
impl Serialize for WalletSagaState
impl Copy for WalletSagaState
impl Eq for WalletSagaState
impl StructuralPartialEq for WalletSagaState
Auto Trait Implementations§
impl Freeze for WalletSagaState
impl RefUnwindSafe for WalletSagaState
impl Send for WalletSagaState
impl Sync for WalletSagaState
impl Unpin for WalletSagaState
impl UnsafeUnpin for WalletSagaState
impl UnwindSafe for WalletSagaState
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