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
        Self: 'async_trait,
        'life0: 'async_trait
; fn get_transport_stats(&self) -> RpcTransportStats; fn url(&self) -> String; }
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§