Struct bitcoin_rpc_client::TransactionInput[][src]

pub struct TransactionInput { /* fields omitted */ }

Transaction input can either be a regular transaction or a coinbase transaction. They have different fields, but most of the time, we will be interacting with regular transactions. For deserialization compatibility, we define all the fields as Option and provide accessors.

Methods

impl TransactionInput
[src]

Trait Implementations

impl Debug for TransactionInput
[src]

Formats the value using the given formatter. Read more

impl PartialEq for TransactionInput
[src]

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

This method tests for !=.

Auto Trait Implementations