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
sourceimpl Clone for GetTxOutSetInfoResult
impl Clone for GetTxOutSetInfoResult
sourcefn clone(&self) -> GetTxOutSetInfoResult
fn clone(&self) -> GetTxOutSetInfoResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetTxOutSetInfoResult
impl Debug for GetTxOutSetInfoResult
sourceimpl<'de> Deserialize<'de> for GetTxOutSetInfoResult
impl<'de> Deserialize<'de> for GetTxOutSetInfoResult
sourcefn 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
sourceimpl PartialEq<GetTxOutSetInfoResult> for GetTxOutSetInfoResult
impl PartialEq<GetTxOutSetInfoResult> for GetTxOutSetInfoResult
sourcefn eq(&self, other: &GetTxOutSetInfoResult) -> bool
fn eq(&self, other: &GetTxOutSetInfoResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetTxOutSetInfoResult) -> bool
fn ne(&self, other: &GetTxOutSetInfoResult) -> bool
This method tests for !=
.
sourceimpl Serialize for GetTxOutSetInfoResult
impl Serialize for GetTxOutSetInfoResult
impl Eq for GetTxOutSetInfoResult
impl StructuralEq for GetTxOutSetInfoResult
impl StructuralPartialEq for GetTxOutSetInfoResult
Auto Trait Implementations
impl RefUnwindSafe for GetTxOutSetInfoResult
impl Send for GetTxOutSetInfoResult
impl Sync for GetTxOutSetInfoResult
impl Unpin for GetTxOutSetInfoResult
impl UnwindSafe for GetTxOutSetInfoResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more