pub struct AddressContentTotal {
pub address: String,
pub received_sum: Vec<TxContentOutputAmountInner>,
pub sent_sum: Vec<TxContentOutputAmountInner>,
pub tx_count: i32,
}Fields§
§address: StringBech32 encoded address
received_sum: Vec<TxContentOutputAmountInner>§sent_sum: Vec<TxContentOutputAmountInner>§tx_count: i32Count of all transactions on the address
Implementations§
Source§impl AddressContentTotal
impl AddressContentTotal
pub fn new( address: String, received_sum: Vec<TxContentOutputAmountInner>, sent_sum: Vec<TxContentOutputAmountInner>, tx_count: i32, ) -> AddressContentTotal
Trait Implementations§
Source§impl Clone for AddressContentTotal
impl Clone for AddressContentTotal
Source§fn clone(&self) -> AddressContentTotal
fn clone(&self) -> AddressContentTotal
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 AddressContentTotal
impl Debug for AddressContentTotal
Source§impl Default for AddressContentTotal
impl Default for AddressContentTotal
Source§fn default() -> AddressContentTotal
fn default() -> AddressContentTotal
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressContentTotal
impl<'de> Deserialize<'de> for AddressContentTotal
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 AddressContentTotal
impl PartialEq for AddressContentTotal
Source§impl Serialize for AddressContentTotal
impl Serialize for AddressContentTotal
impl StructuralPartialEq for AddressContentTotal
Auto Trait Implementations§
impl Freeze for AddressContentTotal
impl RefUnwindSafe for AddressContentTotal
impl Send for AddressContentTotal
impl Sync for AddressContentTotal
impl Unpin for AddressContentTotal
impl UnwindSafe for AddressContentTotal
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