[][src]Trait substrate_subxt::system::AccountStoreExt

pub trait AccountStoreExt<T: System> {
    fn account<'a>(
        &'a self,
        account_id: &'a T::AccountId
    ) -> Pin<Box<dyn Future<Output = Result<AccountInfo<T>, Error>> + Send + 'a>>; }

Store extension trait.

Required methods

fn account<'a>(
    &'a self,
    account_id: &'a T::AccountId
) -> Pin<Box<dyn Future<Output = Result<AccountInfo<T>, Error>> + Send + 'a>>

Retrive the store element.

Loading content...

Implementors

impl<T, S, E> AccountStoreExt<T> for Client<T, S, E> where
    T: System + Send + Sync,
    S: 'static,
    E: Send + Sync + 'static, 
[src]

Loading content...