pub struct UtxoTransaction {
pub transaction: Transaction,
pub txid: Txid,
/* private fields */
}
Expand description
A transaction that has been parsed tracking input amounts and output status
Fields§
§transaction: Transaction
Underlying bitcoin transaction Transaction
txid: Txid
Precomputed Txid
Implementations§
Trait Implementations§
Source§impl Clone for UtxoTransaction
impl Clone for UtxoTransaction
Source§fn clone(&self) -> UtxoTransaction
fn clone(&self) -> UtxoTransaction
Returns a duplicate 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 UtxoTransaction
impl Debug for UtxoTransaction
Source§impl PartialEq for UtxoTransaction
impl PartialEq for UtxoTransaction
impl Eq for UtxoTransaction
impl StructuralPartialEq for UtxoTransaction
Auto Trait Implementations§
impl Freeze for UtxoTransaction
impl RefUnwindSafe for UtxoTransaction
impl Send for UtxoTransaction
impl Sync for UtxoTransaction
impl Unpin for UtxoTransaction
impl UnwindSafe for UtxoTransaction
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