pub trait ClusterRequestBuilder {
    // Required method
    fn build_req(
        &self,
        triple_client: &mut TripleClient,
        path: PathAndQuery,
        invocation: Arc<RpcInvocation>,
        body: SdkBody
    ) -> Request<SdkBody>;
}

Required Methods§

source

fn build_req( &self, triple_client: &mut TripleClient, path: PathAndQuery, invocation: Arc<RpcInvocation>, body: SdkBody ) -> Request<SdkBody>

Implementors§