[][src]Struct bitcoincore_rpc_json::GetTxOutSetInfoResult

pub struct GetTxOutSetInfoResult {
    pub height: u64,
    pub best_block: BlockHash,
    pub transactions: u64,
    pub tx_outs: u64,
    pub bogosize: u64,
    pub hash_serialized_2: Hash,
    pub disk_size: u64,
    pub total_amount: Amount,
}

Fields

height: u64

The current block height (index)

best_block: BlockHash

The hash of the block at the tip of the chain

transactions: u64

The number of transactions with unspent outputs

tx_outs: u64

The number of unspent transaction outputs

bogosize: u64

A meaningless metric for UTXO set size

hash_serialized_2: Hash

The serialized hash

disk_size: u64

The estimated size of the chainstate on disk

total_amount: Amount

The total amount

Trait Implementations

impl Clone for GetTxOutSetInfoResult[src]

impl Debug for GetTxOutSetInfoResult[src]

impl<'de> Deserialize<'de> for GetTxOutSetInfoResult[src]

impl Eq for GetTxOutSetInfoResult[src]

impl PartialEq<GetTxOutSetInfoResult> for GetTxOutSetInfoResult[src]

impl Serialize for GetTxOutSetInfoResult[src]

impl StructuralEq for GetTxOutSetInfoResult[src]

impl StructuralPartialEq for GetTxOutSetInfoResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.