pub enum StacksBaseChainOperation {
BlockCommitted(StacksBlockCommitmentData),
LeaderRegistered(KeyRegistrationData),
StxTransferred(TransferSTXData),
StxLocked(LockSTXData),
}Variants§
BlockCommitted(StacksBlockCommitmentData)
LeaderRegistered(KeyRegistrationData)
StxTransferred(TransferSTXData)
StxLocked(LockSTXData)
Trait Implementations§
source§impl Clone for StacksBaseChainOperation
impl Clone for StacksBaseChainOperation
source§fn clone(&self) -> StacksBaseChainOperation
fn clone(&self) -> StacksBaseChainOperation
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 StacksBaseChainOperation
impl Debug for StacksBaseChainOperation
source§impl<'de> Deserialize<'de> for StacksBaseChainOperation
impl<'de> Deserialize<'de> for StacksBaseChainOperation
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 StacksBaseChainOperation
impl PartialEq for StacksBaseChainOperation
source§fn eq(&self, other: &StacksBaseChainOperation) -> bool
fn eq(&self, other: &StacksBaseChainOperation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for StacksBaseChainOperation
impl Serialize for StacksBaseChainOperation
impl StructuralPartialEq for StacksBaseChainOperation
Auto Trait Implementations§
impl RefUnwindSafe for StacksBaseChainOperation
impl Send for StacksBaseChainOperation
impl Sync for StacksBaseChainOperation
impl Unpin for StacksBaseChainOperation
impl UnwindSafe for StacksBaseChainOperation
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