Trait issue_rpc::IssueApiClient
source · 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.