Struct multiversx_sdk::data::transaction::Transaction
source · pub struct Transaction {
pub nonce: u64,
pub value: String,
pub receiver: Address,
pub sender: Address,
pub gas_price: u64,
pub gas_limit: u64,
pub data: Option<String>,
pub signature: Option<String>,
pub chain_id: String,
pub version: u32,
pub options: u32,
}
Fields§
§nonce: u64
§value: String
§receiver: Address
§sender: Address
§gas_price: u64
§gas_limit: u64
§data: Option<String>
§signature: Option<String>
§chain_id: String
§version: u32
§options: u32
Trait Implementations§
source§impl Clone for Transaction
impl Clone for Transaction
source§fn clone(&self) -> Transaction
fn clone(&self) -> Transaction
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 Transaction
impl Debug for Transaction
source§impl<'de> Deserialize<'de> for Transaction
impl<'de> Deserialize<'de> for Transaction
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