pub trait IssueApiClient<BlockHash, AccountId, H256, IssueRequest>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    AccountId: Send + Sync + 'static + Serialize,
    H256: Send + Sync + 'static + DeserializeOwned,
    IssueRequest: Send + Sync + 'static,{
    // Provided methods
    fn get_issue_requests<'life0, 'async_trait>(
        &'life0 self,
        account_id: AccountId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Vec<H256>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn get_vault_issue_requests<'life0, 'async_trait>(
        &'life0 self,
        vault_id: AccountId,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Vec<H256>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Client implementation for the IssueApi RPC API.

Provided Methods§

source

fn get_issue_requests<'life0, 'async_trait>( &'life0 self, account_id: AccountId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<Vec<H256>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn get_vault_issue_requests<'life0, 'async_trait>( &'life0 self, vault_id: AccountId, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<Vec<H256>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, AccountId, H256, IssueRequest> IssueApiClient<BlockHash, AccountId, H256, IssueRequest> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, AccountId: Send + Sync + 'static + Serialize, H256: Send + Sync + 'static + DeserializeOwned, IssueRequest: Send + Sync + 'static,