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: Option<BlockTime>,
}
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 (sats) if confirmed.
The availability of the fee depends on the backend. It’s never None
with an Electrum
Server backend, but it could be None
with a Bitcoin RPC node without txindex that receive
funds while offline.
confirmation_time: Option<BlockTime>
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 for TransactionDetails
impl PartialEq for TransactionDetails
source§fn eq(&self, other: &TransactionDetails) -> bool
fn eq(&self, other: &TransactionDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for TransactionDetails
impl PartialOrd 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 moresource§impl Serialize for TransactionDetails
impl Serialize for TransactionDetails
impl Eq for TransactionDetails
impl StructuralEq for TransactionDetails
impl StructuralPartialEq for TransactionDetails
Auto Trait Implementations§
impl RefUnwindSafe for TransactionDetails
impl Send for TransactionDetails
impl Sync for TransactionDetails
impl Unpin for TransactionDetails
impl UnwindSafe for TransactionDetails
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