pub struct AddressTxsSummary {
pub funded_txo_count: u32,
pub funded_txo_sum: Amount,
pub spent_txo_count: u32,
pub spent_txo_sum: Amount,
pub tx_count: u32,
}Expand description
A summary of Transactions in which an Address is involved.
Fields§
§funded_txo_count: u32§funded_txo_sum: Amount§spent_txo_count: u32§spent_txo_sum: Amount§tx_count: u32The total number of Transactions for this Address.
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AddressTxsSummary
Source§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
impl Eq for AddressTxsSummary
Source§impl PartialEq for AddressTxsSummary
impl PartialEq for AddressTxsSummary
Source§fn eq(&self, other: &AddressTxsSummary) -> bool
fn eq(&self, other: &AddressTxsSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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