pub trait ReplaceApiClient<BlockHash, AccountId, H256, ReplaceRequest>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    AccountId: Send + Sync + 'static + Serialize,
    H256: Send + Sync + 'static + DeserializeOwned,
    ReplaceRequest: Send + Sync + 'static,{
    // Provided methods
    fn get_old_vault_replace_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 { ... }
    fn get_new_vault_replace_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 ReplaceApi RPC API.

Provided Methods§

source

fn get_old_vault_replace_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,

source

fn get_new_vault_replace_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, ReplaceRequest> ReplaceApiClient<BlockHash, AccountId, H256, ReplaceRequest> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, AccountId: Send + Sync + 'static + Serialize, H256: Send + Sync + 'static + DeserializeOwned, ReplaceRequest: Send + Sync + 'static,