pub struct GetTxOutSetInfoBlockInfo {
pub prevout_spent: Amount,
pub coinbase: Amount,
pub new_outputs_ex_coinbase: Amount,
pub unspendable: Amount,
pub unspendables: GetTxOutSetInfoUnspendables,
}Expand description
Detailed block-level info. Part of gettxoutsetinfo.
Fields§
§prevout_spent: AmountTotal amount of all prevouts spent in this block.
coinbase: AmountCoinbase subsidy amount of this block.
new_outputs_ex_coinbase: AmountTotal amount of new outputs created by this block.
unspendable: AmountTotal amount of unspendable outputs created in this block.
unspendables: GetTxOutSetInfoUnspendablesDetailed view of unspendable categories.
Trait Implementations§
Source§impl Clone for GetTxOutSetInfoBlockInfo
impl Clone for GetTxOutSetInfoBlockInfo
Source§fn clone(&self) -> GetTxOutSetInfoBlockInfo
fn clone(&self) -> GetTxOutSetInfoBlockInfo
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 GetTxOutSetInfoBlockInfo
impl Debug for GetTxOutSetInfoBlockInfo
Source§impl<'de> Deserialize<'de> for GetTxOutSetInfoBlockInfo
impl<'de> Deserialize<'de> for GetTxOutSetInfoBlockInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetTxOutSetInfoBlockInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetTxOutSetInfoBlockInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetTxOutSetInfoBlockInfo
impl PartialEq for GetTxOutSetInfoBlockInfo
Source§impl Serialize for GetTxOutSetInfoBlockInfo
impl Serialize for GetTxOutSetInfoBlockInfo
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetTxOutSetInfoBlockInfo
Auto Trait Implementations§
impl Freeze for GetTxOutSetInfoBlockInfo
impl RefUnwindSafe for GetTxOutSetInfoBlockInfo
impl Send for GetTxOutSetInfoBlockInfo
impl Sync for GetTxOutSetInfoBlockInfo
impl Unpin for GetTxOutSetInfoBlockInfo
impl UnsafeUnpin for GetTxOutSetInfoBlockInfo
impl UnwindSafe for GetTxOutSetInfoBlockInfo
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