[][src]Crate jsonrpc_v2

A very small and very fast JSON-RPC 2.0 server-focused framework.

Provides integrations for both hyper and actix-web. Enable features actix or hyper depending on need.

actix is enabled by default. Make sure to add default-features = false if using hyper.

Also see the easy-errors feature flag (not enabled by default). Enabling this flag will implement ErrorLike for anything that implements Display, and the display value will be provided in the message field of the JSON-RPC 2.0 Error response.

Otherwise, custom errors should implement ErrorLike to map errors to the JSON-RPC 2.0 Error response.

Individual method handlers can take various kinds of args (things that can be extracted from the request, like the Params or State), and should return something that can resolve into a future where the Item is serializable. See examples below.

Usage

use jsonrpc_v2::*;

#[derive(serde::Deserialize)]
struct TwoNums { a: usize, b: usize }

fn add(Params(params): Params<TwoNums>) -> Result<usize, Error> {
    Ok(params.a + params.b)
}

fn sub(Params(params): Params<(usize, usize)>) -> Result<usize, Error> {
    Ok(params.0 - params.1)
}

fn message(state: State<String>) -> Result<String, Error> {
    Ok(String::from(&*state))
}

fn main() -> Result<(), Box<dyn std::error::Error>> {

    let rpc = Server::with_state(String::from("Hello!"))
        .with_method("add", add)
        .with_method("sub", sub)
        .with_method("message", message)
        .finish();

    actix_web::HttpServer::new(move || {
        let rpc = rpc.clone();
        actix_web::App::new().service(
            actix_web::web::service("/api")
                .guard(actix_web::guard::Post())
                .finish(rpc.into_web_service()),
        )
    })
    .bind("0.0.0.0:3000")?
    .run()?;

    Ok(())
}

Structs

NotificationBuilder

Builder struct for a notification request object

Params

FromRequest wrapper for request params

RequestBuilder

Builder struct for a request object

RequestObject

Request/Notification object

Server

Server/request handler

ServerBuilder

Builder used to add methods to a server

State

A wrapper around the (optional) state object provided when creating the server

Enums

Error

Error object in a response

Id

Container for the request ID, which can be a string, number, or null. Not typically used directly.

RequestKind

An enum to contain the different kinds of possible requests: using the provided RequestObject, an array of RequestObjects, or raw bytes.

ResponseObject

The individual response object

ResponseObjects

Container for the response object(s) or Empty for notification request(s)

Traits

ErrorLike

Trait that can be used to map custom errors to the Error object.

FromRequest

A trait to extract data from the request