Struct clarity_repl::codec::TransactionSmartContract
source · pub struct TransactionSmartContract {
pub name: ContractName,
pub code_body: StacksString,
}Expand description
A transaction that instantiates a smart contract
Fields§
§name: ContractName§code_body: StacksStringTrait Implementations§
source§impl Clone for TransactionSmartContract
impl Clone for TransactionSmartContract
source§fn clone(&self) -> TransactionSmartContract
fn clone(&self) -> TransactionSmartContract
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 TransactionSmartContract
impl Debug for TransactionSmartContract
source§impl<'de> Deserialize<'de> for TransactionSmartContract
impl<'de> Deserialize<'de> for TransactionSmartContract
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 TransactionSmartContract
impl PartialEq for TransactionSmartContract
source§fn eq(&self, other: &TransactionSmartContract) -> bool
fn eq(&self, other: &TransactionSmartContract) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TransactionSmartContract
impl Serialize for TransactionSmartContract
source§impl StacksMessageCodec for TransactionSmartContract
impl StacksMessageCodec for TransactionSmartContract
source§fn consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError>
fn consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError>
serialize implementors should never error unless there is an underlying
failure in writing to the
fdfn consensus_deserialize<R: Read>( fd: &mut R ) -> Result<TransactionSmartContract, CodecError>
impl StructuralPartialEq for TransactionSmartContract
Auto Trait Implementations§
impl RefUnwindSafe for TransactionSmartContract
impl Send for TransactionSmartContract
impl Sync for TransactionSmartContract
impl Unpin for TransactionSmartContract
impl UnwindSafe for TransactionSmartContract
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