pub struct NetworkSupply {
pub max: String,
pub total: String,
pub circulating: String,
pub locked: String,
pub treasury: String,
pub reserves: String,
}Fields§
§max: StringMaximum supply in Lovelaces
total: StringCurrent total (max supply - reserves) supply in Lovelaces
circulating: StringCurrent circulating (UTXOs + withdrawables) supply in Lovelaces
locked: StringCurrent supply locked by scripts in Lovelaces
treasury: StringCurrent supply locked in treasury
reserves: StringCurrent supply locked in reserves
Implementations§
Trait Implementations§
Source§impl Clone for NetworkSupply
impl Clone for NetworkSupply
Source§fn clone(&self) -> NetworkSupply
fn clone(&self) -> NetworkSupply
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 NetworkSupply
impl Debug for NetworkSupply
Source§impl Default for NetworkSupply
impl Default for NetworkSupply
Source§fn default() -> NetworkSupply
fn default() -> NetworkSupply
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkSupply
impl<'de> Deserialize<'de> for NetworkSupply
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 NetworkSupply
impl PartialEq for NetworkSupply
Source§impl Serialize for NetworkSupply
impl Serialize for NetworkSupply
impl StructuralPartialEq for NetworkSupply
Auto Trait Implementations§
impl Freeze for NetworkSupply
impl RefUnwindSafe for NetworkSupply
impl Send for NetworkSupply
impl Sync for NetworkSupply
impl Unpin for NetworkSupply
impl UnwindSafe for NetworkSupply
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