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§

source§

impl Transport for MinreqHttpTransport

Available on crate feature minreq_http only.
source§

impl Transport for SimpleHttpTransport

Available on crate feature simple_http only.
source§

impl Transport for TcpTransport

Available on crate feature simple_tcp only.
source§

impl Transport for UdsTransport

Available on crate feature simple_uds and non-Windows only.