package piqilib

  1. Overview
  2. Docs
The Piqi library -- runtime support for multi-format Protobuf/JSON/XML/Piq data serialization and conversion

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.6.16.tar.gz
sha256=7490ab16b6f0f2496b58731c49eaa596985cbaff3be1edf3def8d61dae99fa53
md5=33121fae570f0949426bab875c809b78

doc/piqilib/Piqobj/Piqobj/index.html

Module Piqobj.PiqobjSource

type record = Record.t
type variant = Variant.t
type enum = Enum.t
type alias = Alias.t
type list = List.t
type field = Field.t
type option = Option.t
type any = Any.t
type typedef = [
  1. | `record of record
  2. | `variant of variant
  3. | `enum of enum
  4. | `alias of alias
  5. | `list of list
]
type obj = [
  1. | typedef
  2. | `int of int64
  3. | `uint of int64
  4. | `float of float
  5. | `bool of bool
  6. | `string of string
  7. | `binary of string
  8. | `any of any
]