pub struct AddressTxsSummary {
pub funded_txo_count: u32,
pub funded_txo_sum: u64,
pub spent_txo_count: u32,
pub spent_txo_sum: u64,
pub tx_count: u32,
}Expand description
A summary of Transactions in which an Address was involved.
Fields§
§funded_txo_count: u32The number of funded TxOuts.
funded_txo_sum: u64The sum of the funded TxOuts, in satoshis.
spent_txo_count: u32The number of spent TxOuts.
spent_txo_sum: u64The sum of the spent TxOuts, in satoshis.
tx_count: u32The total number of Transactions.
Trait Implementations§
Source§impl Clone for AddressTxsSummary
impl Clone for AddressTxsSummary
Source§fn clone(&self) -> AddressTxsSummary
fn clone(&self) -> AddressTxsSummary
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 AddressTxsSummary
impl Debug for AddressTxsSummary
Source§impl<'de> Deserialize<'de> for AddressTxsSummary
impl<'de> Deserialize<'de> for AddressTxsSummary
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 AddressTxsSummary
impl PartialEq for AddressTxsSummary
impl Copy for AddressTxsSummary
impl Eq for AddressTxsSummary
impl StructuralPartialEq for AddressTxsSummary
Auto Trait Implementations§
impl Freeze for AddressTxsSummary
impl RefUnwindSafe for AddressTxsSummary
impl Send for AddressTxsSummary
impl Sync for AddressTxsSummary
impl Unpin for AddressTxsSummary
impl UnwindSafe for AddressTxsSummary
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