package ppx_protocol_conv

  1. Overview
  2. Docs
Ppx for generating serialisation and de-serialisation functions of ocaml types

Install

Dune Dependency

Authors

Maintainers

Sources

5.1.3.tar.gz
md5=2f9f5eb9431d9db1e89151277d2bab2c
sha512=3f9d410edd8531c61b8f66a2d21e9f47cfd7def6c14e94501af584afa6801e2f0a94abce8c82b7064b49b113c3a7a12ca1c7027d03e2e88c10d39b4857402077

doc/ppx_protocol_conv.driver/Ppx_protocol_driver/Default_parameters/index.html

Module Ppx_protocol_driver.Default_parametersSource

Set of default Parameters

Sourceval field_name : string -> string

Map field names of records Mapping is done after applying [@key] attribute.

Default is identity

Sourceval variant_name : string -> string

Map variant and constructor names. Mapping is done after applying [@name] attribute.

Default is identity

Sourceval constructors_without_arguments_as_string : bool

Map constructors with no arguments to a string. If true, constructors without arguments are mapped to a string, instead of than a list containing only the constructor / variant name.

Default is true

Sourceval omit_default_values : bool

Omit default values from output. If true, default values are not serialized. Note that this uses polymorphic compare to determine if a field value is the same as the default value.

Default is true

Sourceval eager : bool

Lazy evaluate lazy fields. If true, lazy fields are parsed eagerly. If false, lazy fields are parsed first when forced, which means they will hold the serialized structure until forced, and forcing might raise a parse error.

Default is true

Sourceval strict : bool

Fail if unknown fields are encountered when deserialising records.

Default is false

OCaml

Innovation. Community. Security.