pub struct AddressStats {
pub address: String,
pub chain_stats: AddressTxsSummary,
pub mempool_stats: AddressTxsSummary,
}
Expand description
Address statistics, includes the address, and the utxo information for the address.
Fields§
§address: String
The address.
chain_stats: AddressTxsSummary
The summary of transactions for this address, already on chain.
mempool_stats: AddressTxsSummary
The summary of transactions for this address, currently in the mempool.
Trait Implementations§
Source§impl Clone for AddressStats
impl Clone for AddressStats
Source§fn clone(&self) -> AddressStats
fn clone(&self) -> AddressStats
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 AddressStats
impl Debug for AddressStats
Source§impl<'de> Deserialize<'de> for AddressStats
impl<'de> Deserialize<'de> for AddressStats
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 AddressStats
impl PartialEq for AddressStats
impl Eq for AddressStats
impl StructuralPartialEq for AddressStats
Auto Trait Implementations§
impl Freeze for AddressStats
impl RefUnwindSafe for AddressStats
impl Send for AddressStats
impl Sync for AddressStats
impl Unpin for AddressStats
impl UnwindSafe for AddressStats
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