pub struct ListConfirmedTokensTransfersByAddressRi {
Show 13 fields pub contract_address: String, pub mined_in_block_height: i64, pub recipient_address: String, pub sender_address: String, pub token_decimals: i32, pub token_id: Option<String>, pub token_name: String, pub token_symbol: String, pub token_type: String, pub tokens_amount: Option<String>, pub transaction_hash: String, pub transaction_timestamp: i32, pub transaction_fee: Box<ListTokensTransfersByTransactionHashRiTransactionFee>,
}

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: i64

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_id: Option<String>

Represents the unique token identifier.

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: Option<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.

transaction_fee: Box<ListTokensTransfersByTransactionHashRiTransactionFee>

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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more