Struct multiversx_sdk::data::transaction::ArgCreateTransaction
source · pub struct ArgCreateTransaction {
pub nonce: u64,
pub value: String,
pub rcv_addr: Address,
pub snd_addr: Address,
pub gas_price: u64,
pub gas_limit: u64,
pub data: Option<String>,
pub signature: String,
pub chain_id: String,
pub version: u32,
pub options: u32,
pub available_balance: String,
}Fields§
§nonce: u64§value: String§rcv_addr: Address§snd_addr: Address§gas_price: u64§gas_limit: u64§data: Option<String>§signature: String§chain_id: String§version: u32§options: u32§available_balance: StringTrait Implementations§
source§impl Clone for ArgCreateTransaction
impl Clone for ArgCreateTransaction
source§fn clone(&self) -> ArgCreateTransaction
fn clone(&self) -> ArgCreateTransaction
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 ArgCreateTransaction
impl Debug for ArgCreateTransaction
source§impl<'de> Deserialize<'de> for ArgCreateTransaction
impl<'de> Deserialize<'de> for ArgCreateTransaction
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 ArgCreateTransaction
impl Send for ArgCreateTransaction
impl Sync for ArgCreateTransaction
impl Unpin for ArgCreateTransaction
impl UnwindSafe for ArgCreateTransaction
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