[][src]Struct elrond_wasm_debug::TxInput

pub struct TxInput {
    pub from: Address,
    pub to: Address,
    pub call_value: BigUint,
    pub esdt_value: BigUint,
    pub esdt_token_name: Option<Vec<u8>>,
    pub func_name: Vec<u8>,
    pub args: Vec<Vec<u8>>,
    pub gas_limit: u64,
    pub gas_price: u64,
    pub tx_hash: H256,
}

Fields

from: Addressto: Addresscall_value: BigUintesdt_value: BigUintesdt_token_name: Option<Vec<u8>>func_name: Vec<u8>args: Vec<Vec<u8>>gas_limit: u64gas_price: u64tx_hash: H256

Implementations

impl TxInput[src]

pub fn add_arg(&mut self, arg: Vec<u8>)[src]

Trait Implementations

impl Clone for TxInput[src]

impl Debug for TxInput[src]

impl Display for TxInput[src]

Auto Trait Implementations

impl RefUnwindSafe for TxInput

impl Send for TxInput

impl Sync for TxInput

impl Unpin for TxInput

impl UnwindSafe for TxInput

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.