[][src]Trait substrate_subxt::system::SystemStore

pub trait SystemStore {
    type System: System;
    fn account(
        &self,
        account_id: <Self::System as System>::AccountId
    ) -> Pin<Box<dyn Future<Output = Result<AccountInfo<Self::System>, Error>> + Send>>; }

The System extension trait for the Client.

Associated Types

type System: System

System type.

Loading content...

Required methods

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

Returns the nonce and account data for an account_id.

Loading content...

Implementors

impl<T: System + Balances + Sync + Send + 'static, S: 'static> SystemStore for Client<T, S>[src]

type System = T

Loading content...