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§
Source§impl Clone for GetTxOutSetInfoResult
impl Clone for GetTxOutSetInfoResult
Source§fn clone(&self) -> GetTxOutSetInfoResult
fn clone(&self) -> GetTxOutSetInfoResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetTxOutSetInfoResult
impl Debug for GetTxOutSetInfoResult
Source§impl<'de> Deserialize<'de> for GetTxOutSetInfoResult
impl<'de> Deserialize<'de> for GetTxOutSetInfoResult
Source§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
Source§impl PartialEq for GetTxOutSetInfoResult
impl PartialEq for GetTxOutSetInfoResult
Source§impl Serialize for GetTxOutSetInfoResult
impl Serialize for GetTxOutSetInfoResult
impl Eq for GetTxOutSetInfoResult
impl StructuralPartialEq for GetTxOutSetInfoResult
Auto Trait Implementations§
impl Freeze for GetTxOutSetInfoResult
impl RefUnwindSafe for GetTxOutSetInfoResult
impl Send for GetTxOutSetInfoResult
impl Sync for GetTxOutSetInfoResult
impl Unpin for GetTxOutSetInfoResult
impl UnwindSafe for GetTxOutSetInfoResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more