pub trait RpcSender {
    fn send<'life0, 'async_trait>(
        &'life0 self,
        request: RpcRequest,
        params: Value
    ) -> Pin<Box<dyn Future<Output = Result<Value>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_transport_stats(&self) -> RpcTransportStats; }
Expand description

A transport for RPC calls.

RpcSender implements the underlying transport of requests to, and responses from, a Solana node, and is used primarily by RpcClient.

Required methods

Implementors