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
sourceimpl Clone for Unspendables
impl Clone for Unspendables
sourcefn clone(&self) -> Unspendables
fn clone(&self) -> Unspendables
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 Unspendables
impl Debug for Unspendables
sourceimpl<'de> Deserialize<'de> for Unspendables
impl<'de> Deserialize<'de> for Unspendables
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<Unspendables> for Unspendables
impl PartialEq<Unspendables> for Unspendables
sourcefn 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 ==
. Read more
sourceimpl Serialize for Unspendables
impl Serialize for Unspendables
impl Eq for Unspendables
impl StructuralEq for Unspendables
impl StructuralPartialEq for Unspendables
Auto Trait Implementations
impl RefUnwindSafe for Unspendables
impl Send for Unspendables
impl Sync for Unspendables
impl Unpin for Unspendables
impl UnwindSafe for Unspendables
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