Trait jsonrpc::client::Transport

source ·
pub trait Transport: Send + Sync + 'static {
    // Required methods
    fn send_request(&self, _: Request<'_>) -> Result<Response, Error>;
    fn send_batch(&self, _: &[Request<'_>]) -> Result<Vec<Response>, Error>;
    fn fmt_target(&self, f: &mut Formatter<'_>) -> Result;
}
Expand description

An interface for a transport over which to use the JSONRPC protocol.

Required Methods§

source

fn send_request(&self, _: Request<'_>) -> Result<Response, Error>

Sends an RPC request over the transport.

source

fn send_batch(&self, _: &[Request<'_>]) -> Result<Vec<Response>, Error>

Sends a batch of RPC requests over the transport.

source

fn fmt_target(&self, f: &mut Formatter<'_>) -> Result

Formats the target of this transport. I.e. the URL/socket/…

Implementors§