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 for WalletTxInfo
impl PartialEq 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 ==
.source§impl Serialize for WalletTxInfo
impl Serialize for WalletTxInfo
impl Eq for WalletTxInfo
impl StructuralPartialEq for WalletTxInfo
Auto Trait Implementations§
impl Freeze for WalletTxInfo
impl RefUnwindSafe for WalletTxInfo
impl Send for WalletTxInfo
impl Sync for WalletTxInfo
impl Unpin for WalletTxInfo
impl UnwindSafe for WalletTxInfo
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