rpc-json-client 0.1.1

A generic rpc client that handles JSON
Documentation
1
2
3
4
5
6
7
8
9
pub mod client;
pub mod error;
pub mod types;
pub mod builder;

pub use crate::client::RpcClient;
pub use crate::error::{Error, RpcError};
pub use crate::types::{RpcRequest, RpcResponse};
pub use crate::builder::ClientBuilder;