Struct multiversx_sdk::data::transaction::TransactionOnNetwork
source · pub struct TransactionOnNetwork {Show 28 fields
pub kind: String,
pub hash: Option<String>,
pub nonce: u64,
pub round: u64,
pub epoch: u64,
pub value: String,
pub receiver: Address,
pub sender: Address,
pub gas_price: u64,
pub gas_limit: u64,
pub signature: String,
pub source_shard: u32,
pub destination_shard: u32,
pub block_nonce: u64,
pub block_hash: String,
pub notarized_at_source_in_meta_nonce: u64,
pub notarized_at_source_in_meta_hash: String,
pub notarized_at_destination_in_meta_nonce: u64,
pub notarized_at_destination_in_meta_hash: String,
pub miniblock_type: String,
pub miniblock_hash: String,
pub timestamp: u64,
pub data: Option<String>,
pub status: String,
pub hyperblock_nonce: u64,
pub hyperblock_hash: String,
pub smart_contract_results: Option<Vec<ApiSmartContractResult>>,
pub logs: Option<ApiLogs>,
}Fields§
§kind: String§hash: Option<String>§nonce: u64§round: u64§epoch: u64§value: String§receiver: Address§sender: Address§gas_price: u64§gas_limit: u64§signature: String§source_shard: u32§destination_shard: u32§block_nonce: u64§block_hash: String§notarized_at_source_in_meta_nonce: u64§notarized_at_source_in_meta_hash: String§notarized_at_destination_in_meta_nonce: u64§notarized_at_destination_in_meta_hash: String§miniblock_type: String§miniblock_hash: String§timestamp: u64§data: Option<String>§status: String§hyperblock_nonce: u64§hyperblock_hash: String§smart_contract_results: Option<Vec<ApiSmartContractResult>>§logs: Option<ApiLogs>Trait Implementations§
source§impl Clone for TransactionOnNetwork
impl Clone for TransactionOnNetwork
source§fn clone(&self) -> TransactionOnNetwork
fn clone(&self) -> TransactionOnNetwork
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 TransactionOnNetwork
impl Debug for TransactionOnNetwork
source§impl<'de> Deserialize<'de> for TransactionOnNetwork
impl<'de> Deserialize<'de> for TransactionOnNetwork
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
Auto Trait Implementations§
impl RefUnwindSafe for TransactionOnNetwork
impl Send for TransactionOnNetwork
impl Sync for TransactionOnNetwork
impl Unpin for TransactionOnNetwork
impl UnwindSafe for TransactionOnNetwork
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