Struct cryptoapis::models::list_tokens_transfers_by_transaction_hash_ri::ListTokensTransfersByTransactionHashRi[][src]

pub struct ListTokensTransfersByTransactionHashRi {
    pub contract_address: String,
    pub mined_in_block_height: i32,
    pub recipient_address: String,
    pub sender_address: String,
    pub token_decimals: i32,
    pub token_name: String,
    pub token_symbol: String,
    pub token_type: String,
    pub tokens_amount: String,
    pub transaction_hash: String,
    pub transaction_timestamp: i32,
}

Fields

contract_address: String

Represents the contract address of the token, which controls its logic. It is not the address that holds the tokens.

mined_in_block_height: i32

Defines the block height in which this transaction was confirmed/mined.

recipient_address: String

Defines the address to which the recipient receives the transferred tokens.

sender_address: String

Defines the address from which the sender transfers tokens.

token_decimals: i32

Defines the decimals of the token, i.e. the number of digits that come after the decimal coma of the token.

token_name: String

Defines the token’s name as a string.

token_symbol: String

Defines the token symbol by which the token contract is known. It is usually 3-4 characters in length.

token_type: String

Defines the specific token type.

tokens_amount: String

Defines the token amount of the transfer.

transaction_hash: String

Represents the hash of the transaction, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.

transaction_timestamp: i32

Defines the specific time/date when the transaction was created in Unix Timestamp.

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.