Struct bdk::TransactionDetails
source · pub struct TransactionDetails {
pub transaction: Option<Transaction>,
pub txid: Txid,
pub received: u64,
pub sent: u64,
pub fee: Option<u64>,
pub confirmation_time: ConfirmationTime,
}
Expand description
A wallet transaction
Fields§
§transaction: Option<Transaction>
Optional transaction
txid: Txid
Transaction id
received: u64
Received value (sats) Sum of owned outputs of this transaction.
sent: u64
Sent value (sats) Sum of owned inputs of this transaction.
fee: Option<u64>
Fee value in sats if it was available.
confirmation_time: ConfirmationTime
If the transaction is confirmed, contains height and Unix timestamp of the block containing the
transaction, unconfirmed transaction contains None
.
Trait Implementations§
source§impl Clone for TransactionDetails
impl Clone for TransactionDetails
source§fn clone(&self) -> TransactionDetails
fn clone(&self) -> TransactionDetails
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 TransactionDetails
impl Debug for TransactionDetails
source§impl<'de> Deserialize<'de> for TransactionDetails
impl<'de> Deserialize<'de> for TransactionDetails
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 Ord for TransactionDetails
impl Ord for TransactionDetails
source§impl PartialEq<TransactionDetails> for TransactionDetails
impl PartialEq<TransactionDetails> for TransactionDetails
source§fn eq(&self, other: &TransactionDetails) -> bool
fn eq(&self, other: &TransactionDetails) -> bool
source§impl PartialOrd<TransactionDetails> for TransactionDetails
impl PartialOrd<TransactionDetails> for TransactionDetails
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more