pub enum StacksTransactionKind {
ContractCall(StacksContractCallData),
ContractDeployment(StacksContractDeploymentData),
NativeTokenTransfer,
Coinbase,
BitcoinOp(BitcoinOpData),
Unsupported,
}Variants§
ContractCall(StacksContractCallData)
ContractDeployment(StacksContractDeploymentData)
NativeTokenTransfer
Coinbase
BitcoinOp(BitcoinOpData)
Unsupported
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 for StacksTransactionKind
impl PartialEq 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 ==.source§impl Serialize for StacksTransactionKind
impl Serialize for StacksTransactionKind
impl StructuralPartialEq for StacksTransactionKind
Auto Trait Implementations§
impl RefUnwindSafe for StacksTransactionKind
impl Send for StacksTransactionKind
impl Sync for StacksTransactionKind
impl Unpin for StacksTransactionKind
impl UnwindSafe for StacksTransactionKind
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