Imandrakit_ser.ValueSerialization representation.
A Ser_value.t describes how to serialized some structured data into bytes. It reflects the shape of the structured data but does not commit to a particular serialization format.
type t = private | Null| Bool of bool| Str of string| Bytes of string| Int of int64| Float of float| List of t list| Dict of t Imandrakit_common.Str_map.t| Tag of int * tval pp :
Ppx_deriving_runtime.Format.formatter ->
t ->
Ppx_deriving_runtime.unitval show : t -> Ppx_deriving_runtime.stringval equal : t -> t -> Ppx_deriving_runtime.boolval is_null : t -> boolval hash : t -> intval null : tval bool : bool -> tval int : int -> tval int64 : int64 -> tval float : float -> tval string : string -> tval bytes : string -> tval dict : t Imandrakit_common.Str_map.t -> t