pub struct StacksTransactionReceipt {
pub mutated_contracts_radius: HashSet<String>,
pub mutated_assets_radius: HashSet<String>,
pub contract_calls_stack: HashSet<String>,
pub events: Vec<StacksTransactionEvent>,
}Expand description
Extra event data for Transaction
Fields§
§mutated_contracts_radius: HashSet<String>§mutated_assets_radius: HashSet<String>§contract_calls_stack: HashSet<String>§events: Vec<StacksTransactionEvent>Implementations§
source§impl StacksTransactionReceipt
impl StacksTransactionReceipt
pub fn new( mutated_contracts_radius: HashSet<String>, mutated_assets_radius: HashSet<String>, events: Vec<StacksTransactionEvent> ) -> StacksTransactionReceipt
Trait Implementations§
source§impl Clone for StacksTransactionReceipt
impl Clone for StacksTransactionReceipt
source§fn clone(&self) -> StacksTransactionReceipt
fn clone(&self) -> StacksTransactionReceipt
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 StacksTransactionReceipt
impl Debug for StacksTransactionReceipt
source§impl Default for StacksTransactionReceipt
impl Default for StacksTransactionReceipt
source§fn default() -> StacksTransactionReceipt
fn default() -> StacksTransactionReceipt
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StacksTransactionReceipt
impl<'de> Deserialize<'de> for StacksTransactionReceipt
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<StacksTransactionReceipt> for StacksTransactionReceipt
impl PartialEq<StacksTransactionReceipt> for StacksTransactionReceipt
source§fn eq(&self, other: &StacksTransactionReceipt) -> bool
fn eq(&self, other: &StacksTransactionReceipt) -> bool
This method tests for
self and other values to be equal, and is used
by ==.