package jsonrpc

  1. Overview
  2. Docs
type t = [
  1. | `Assoc of (string * t) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `Intlit of string
  6. | `List of t list
  7. | `Null
  8. | `String of string
  9. | `Tuple of t list
  10. | `Variant of string * t option
]
exception Of_json of string * t

Raised when conversions from json fail

module Jsonable : sig ... end