pub struct AccountStats {
pub account_id: String,
pub total_inflow: f64,
pub total_outflow: f64,
pub net_flow: f64,
pub transaction_count: usize,
pub incoming_connections: usize,
pub outgoing_connections: usize,
pub first_seen: DateTime<Utc>,
pub last_seen: DateTime<Utc>,
}Fields§
§account_id: String§total_inflow: f64§total_outflow: f64§net_flow: f64§transaction_count: usize§incoming_connections: usize§outgoing_connections: usize§first_seen: DateTime<Utc>§last_seen: DateTime<Utc>Trait Implementations§
Source§impl Clone for AccountStats
impl Clone for AccountStats
Source§fn clone(&self) -> AccountStats
fn clone(&self) -> AccountStats
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 AccountStats
impl Debug for AccountStats
Source§impl<'de> Deserialize<'de> for AccountStats
impl<'de> Deserialize<'de> for AccountStats
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
Auto Trait Implementations§
impl Freeze for AccountStats
impl RefUnwindSafe for AccountStats
impl Send for AccountStats
impl Sync for AccountStats
impl Unpin for AccountStats
impl UnwindSafe for AccountStats
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