Struct electrum_client::ListUnspentRes [−][src]
pub struct ListUnspentRes {
pub height: usize,
pub tx_hash: Txid,
pub tx_pos: usize,
pub value: u64,
}Expand description
Response to a script_list_unspent request.
Fields
height: usizeConfirmation height of the transaction that created this output.
tx_hash: TxidTxid of the transaction
tx_pos: usizeIndex of the output in the transaction.
value: u64Value of the output.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more