jsonrpc-core 3.0.1

Transport agnostic rust implementation of JSON-RPC 2.0 Specification.
Documentation
pub mod version;
pub mod id;
pub mod params;
pub mod request;
pub mod response;
pub mod error;
pub mod commander;
pub mod request_handler;
pub mod io;
pub mod util;
pub mod async;

pub use serde_json::Value;

pub use self::async::{AsyncResult, AsyncOutput, Response, Ready};
pub use self::version::Version;
pub use self::id::Id;
pub use self::params::Params;
pub use self::request::{Request, Call, MethodCall, Notification};
pub use self::response::{Output, SyncResponse, SyncOutput, Success, Failure};
pub use self::error::{ErrorCode, Error};
pub use self::commander::{Commander, MethodCommand, SyncMethodCommand, AsyncMethodCommand, AsyncMethod, NotificationCommand, MethodResult};
pub use self::request_handler::RequestHandler;
pub use self::io::{IoHandler, IoDelegate, AsyncStringResponse};
pub use self::util::{from_params, to_value};