Struct cryptoapis::models::list_zilliqa_transactions_by_block_hash_ri::ListZilliqaTransactionsByBlockHashRi[][src]

pub struct ListZilliqaTransactionsByBlockHashRi {
    pub fee: Box<GetZilliqaTransactionDetailsByTransactionIdriFee>,
    pub gas_limit: i32,
    pub gas_price: i32,
    pub gas_used: i32,
    pub mined_in_block_height: i32,
    pub nonce: i32,
    pub recipients: Vec<ListZilliqaTransactionsByAddressRiRecipients>,
    pub senders: Vec<ListZilliqaTransactionsByAddressRiSenders>,
    pub timestamp: i32,
    pub transaction_hash: String,
    pub transaction_index: i32,
    pub transaction_status: String,
}

Fields

fee: Box<GetZilliqaTransactionDetailsByTransactionIdriFee>gas_limit: i32

Represents the maximum amount of gas allowed in the block in order to determine how many transactions it can fit.

gas_price: i32

Defines the price of the gas.

gas_used: i32

Defines how much of the gas for the block has been used.

mined_in_block_height: i32

Represents the number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".

nonce: i32

Represents a random value that can be adjusted to satisfy the Proof of Work.

recipients: Vec<ListZilliqaTransactionsByAddressRiRecipients>

Defines an object array of the transaction recipients.

senders: Vec<ListZilliqaTransactionsByAddressRiSenders>

Represents an object of addresses that provide the funds.

timestamp: i32

Defines the exact date/time when this block was mined in Unix Timestamp.

transaction_hash: String

Represents the hash of the transaction, which is its unique identifier.

transaction_index: i32

Defines the numeric representation of the transaction index.

transaction_status: String

Defines the status of the transaction, whether it is e.g. pending or complete.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.