Trait dex_manager_rpc::DEXManagerAPIClient
source · pub trait DEXManagerAPIClient<BlockHash, DEXId>: ClientTwhere
BlockHash: Send + Sync + 'static + Serialize,
DEXId: Send + Sync + 'static + DeserializeOwned,{
// Provided method
fn list_dex_ids<'life0, 'async_trait>(
&'life0 self,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = Result<Vec<DEXId>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
}
Expand description
Client implementation for the DEXManagerAPI
RPC API.