pub enum StacksTransactionKind {
ContractCall(StacksContractCallData),
ContractDeployment(StacksContractDeploymentData),
NativeTokenTransfer,
Coinbase,
Other,
}Variants§
ContractCall(StacksContractCallData)
ContractDeployment(StacksContractDeploymentData)
NativeTokenTransfer
Coinbase
Other
Trait Implementations§
source§impl Clone for StacksTransactionKind
impl Clone for StacksTransactionKind
source§fn clone(&self) -> StacksTransactionKind
fn clone(&self) -> StacksTransactionKind
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 StacksTransactionKind
impl Debug for StacksTransactionKind
source§impl<'de> Deserialize<'de> for StacksTransactionKind
impl<'de> Deserialize<'de> for StacksTransactionKind
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 PartialEq<StacksTransactionKind> for StacksTransactionKind
impl PartialEq<StacksTransactionKind> for StacksTransactionKind
source§fn eq(&self, other: &StacksTransactionKind) -> bool
fn eq(&self, other: &StacksTransactionKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.