pub struct NormalTransaction {
Show 18 fields pub is_error: String, pub block_number: BlockNumber, pub time_stamp: String, pub hash: GenesisOption<H256>, pub nonce: GenesisOption<U256>, pub block_hash: GenesisOption<U256>, pub transaction_index: Option<U64>, pub from: GenesisOption<Address>, pub to: Option<Address>, pub value: U256, pub gas: U256, pub gas_price: Option<U256>, pub tx_receipt_status: String, pub input: GenesisOption<Bytes>, pub contract_address: GenesisOption<Address>, pub gas_used: U256, pub cumulative_gas_used: U256, pub confirmations: U64,
}
Expand description

The raw response from the transaction list API endpoint

Fields

is_error: Stringblock_number: BlockNumbertime_stamp: Stringhash: GenesisOption<H256>nonce: GenesisOption<U256>block_hash: GenesisOption<U256>transaction_index: Option<U64>from: GenesisOption<Address>to: Option<Address>value: U256gas: U256gas_price: Option<U256>tx_receipt_status: Stringinput: GenesisOption<Bytes>contract_address: GenesisOption<Address>gas_used: U256cumulative_gas_used: U256confirmations: U64

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. 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.

Should always be Self

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