Struct bitcoincore_rpc_json::Unspendables
source · pub struct Unspendables {
pub genesis_block: Amount,
pub bip30: Amount,
pub scripts: Amount,
pub unclaimed_rewards: Amount,
}
Expand description
Detailed view of the unspendable categories
Fields§
§genesis_block: Amount
Unspendable coins from the Genesis block
bip30: Amount
Transactions overridden by duplicates (no longer possible with BIP30)
scripts: Amount
Amounts sent to scripts that are unspendable (for example OP_RETURN outputs)
unclaimed_rewards: Amount
Fee rewards that miners did not claim in their coinbase transaction
Trait Implementations§
source§impl Clone for Unspendables
impl Clone for Unspendables
source§fn clone(&self) -> Unspendables
fn clone(&self) -> Unspendables
Returns a copy 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 Unspendables
impl Debug for Unspendables
source§impl<'de> Deserialize<'de> for Unspendables
impl<'de> Deserialize<'de> for Unspendables
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 Unspendables
impl PartialEq for Unspendables
source§fn eq(&self, other: &Unspendables) -> bool
fn eq(&self, other: &Unspendables) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Unspendables
impl Serialize for Unspendables
impl Eq for Unspendables
impl StructuralPartialEq for Unspendables
Auto Trait Implementations§
impl Freeze for Unspendables
impl RefUnwindSafe for Unspendables
impl Send for Unspendables
impl Sync for Unspendables
impl Unpin for Unspendables
impl UnwindSafe for Unspendables
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