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 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 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§impl Serialize for StacksBaseChainOperation
impl Serialize for StacksBaseChainOperation
impl StructuralPartialEq for StacksBaseChainOperation
Auto Trait Implementations§
impl Freeze for StacksBaseChainOperation
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