Struct bitcoincore_rpc_json::WalletTxInfo
source · pub struct WalletTxInfo {
pub confirmations: i32,
pub blockhash: Option<BlockHash>,
pub blockindex: Option<usize>,
pub blocktime: Option<u64>,
pub blockheight: Option<u32>,
pub txid: Txid,
pub time: u64,
pub timereceived: u64,
pub bip125_replaceable: Bip125Replaceable,
pub wallet_conflicts: Vec<Txid>,
}Fields§
§confirmations: i32§blockhash: Option<BlockHash>§blockindex: Option<usize>§blocktime: Option<u64>§blockheight: Option<u32>§txid: Txid§time: u64§timereceived: u64§bip125_replaceable: Bip125Replaceable§wallet_conflicts: Vec<Txid>Conflicting transaction ids
Trait Implementations§
source§impl Clone for WalletTxInfo
impl Clone for WalletTxInfo
source§fn clone(&self) -> WalletTxInfo
fn clone(&self) -> WalletTxInfo
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 WalletTxInfo
impl Debug for WalletTxInfo
source§impl<'de> Deserialize<'de> for WalletTxInfo
impl<'de> Deserialize<'de> for WalletTxInfo
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<WalletTxInfo> for WalletTxInfo
impl PartialEq<WalletTxInfo> for WalletTxInfo
source§fn eq(&self, other: &WalletTxInfo) -> bool
fn eq(&self, other: &WalletTxInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.