package ppx_deriving_rpc

  1. Overview
  2. No Docs
ppx extension for rpclib

Install

Dune Dependency

Authors

Maintainers

Sources

v6.0.0.tar.gz
md5=9d10fc413a559e1d8aa380a8b145736f

Description

The library provides the [@@deriving rpc] ppx directly generates the conversion functions.

type t = ... [@@deriving rpc]

will give two functions:

  • A function to convert values of type t to values of type Rpc.t : val rpc_of_t : t -> Rpc.t

  • A function to convert values of type Rpc.t to values of type t : val t_of_rpc : Rpc.t -> (t,string) Result.result

It also supports the @key annotations for having different field names:

type t = { foo: int [@key "type"]; bar: int [@key "let"]; } [@@deriving rpc]

Tags

org:mirage org:xapi-project

Published: 03 Dec 2019

Dependencies (5)

  1. ppxlib < "0.9.0"
  2. rresult
  3. rpclib = version
  4. jbuilder >= "1.0+beta7"
  5. ocaml >= "4.03.0" & < "4.10.0"

Dev Dependencies (5)

  1. alcotest with-test
  2. async with-test & < "v0.13"
  3. lwt with-test & >= "3.0.0"
  4. rpclib-async with-test & = version
  5. rpclib-lwt with-test & = version

Used by (4)

  1. crc >= "2.1.0"
  2. rpc = "6.0.0"
  3. xapi-backtrace >= "0.7"
  4. xapi-rrd = "1.8.2"

Conflicts

None