Trait tetcore_subxt::balances::TotalIssuanceStoreExt[][src]

pub trait TotalIssuanceStoreExt<T: Runtime + Balances> {
    fn total_issuance<'a>(
        &'a self,
        hash: Option<T::Hash>
    ) -> Pin<Box<dyn Future<Output = Result<T::Balance, Error>> + Send + 'a>>;
fn total_issuance_iter<'a>(
        &'a self,
        hash: Option<T::Hash>
    ) -> Pin<Box<dyn Future<Output = Result<KeyIter<T, TotalIssuanceStore<T>>, Error>> + Send + 'a>>; }

Store extension trait.

Required methods

fn total_issuance<'a>(
    &'a self,
    hash: Option<T::Hash>
) -> Pin<Box<dyn Future<Output = Result<T::Balance, Error>> + Send + 'a>>
[src]

Retrieve the store element.

fn total_issuance_iter<'a>(
    &'a self,
    hash: Option<T::Hash>
) -> Pin<Box<dyn Future<Output = Result<KeyIter<T, TotalIssuanceStore<T>>, Error>> + Send + 'a>>
[src]

Iterate over the store element.

Loading content...

Implementors

impl<T: Runtime + Balances> TotalIssuanceStoreExt<T> for Client<T>[src]

Loading content...