pub struct TokenStats {
pub total_supply: u128,
pub circulating_supply: u128,
pub total_burned: u128,
pub total_accounts: u64,
}Expand description
TNZO token statistics
Fields§
§total_supply: u128Total supply of TNZO
circulating_supply: u128Circulating supply
total_burned: u128Total burned
total_accounts: u64Total number of accounts with balance
Trait Implementations§
Source§impl Clone for TokenStats
impl Clone for TokenStats
Source§fn clone(&self) -> TokenStats
fn clone(&self) -> TokenStats
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 moreSource§impl Debug for TokenStats
impl Debug for TokenStats
Source§impl<'de> Deserialize<'de> for TokenStats
impl<'de> Deserialize<'de> for TokenStats
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 TokenStats
impl RefUnwindSafe for TokenStats
impl Send for TokenStats
impl Sync for TokenStats
impl Unpin for TokenStats
impl UnsafeUnpin for TokenStats
impl UnwindSafe for TokenStats
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