Expand description
§Transport agnostic jsonrpc library.
Right now it supports only server side handling requests.
extern crate rs_jsonrpc_core;
use rs_jsonrpc_core::*;
use rs_jsonrpc_core::futures::Future;
fn main() {
let mut io = IoHandler::new();
io.add_method("say_hello", |_| {
Ok(Value::String("Hello World!".into()))
});
let request = r#"{"jsonrpc": "2.0", "method": "say_hello", "params": [42, 23], "id": 1}"#;
let response = r#"{"jsonrpc":"2.0","result":"Hello World!","id":1}"#;
assert_eq!(io.handle_request(request).wait().unwrap(), Some(response.to_string()));
}
Re-exports§
Modules§
- JSON-RPC types
Structs§
- Simplified
IoHandler
with noMetadata
associated with each request. - Request handler
- No-op middleware implementation
Enums§
IoHandler
json-rpc protocol compatibility- Possible Remote Procedures with Metadata
Traits§
- Metadata trait
- RPC middleware
- Asynchronous Method with Metadata
- Asynchronous Method
- Notification with Metadata
- Notification
Type Aliases§
- A
Future
trait object. - A type representing middleware or RPC response before serialization.
- A type representing future string response.
- A Result type.