package protocell

  1. Overview
  2. Docs
module Name_part : sig ... end
type t = {
  1. name : Name_part.t list;
  2. identifier_value : string option;
  3. positive_int_value : int option;
  4. negative_int_value : int option;
  5. double_value : float option;
  6. string_value : string option;
  7. aggregate_value : string option;
}
val equal : t -> t -> Ppx_deriving_runtime.bool
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val to_binary : t -> (string, [> Bin'.serialization_error ]) Stdlib.result
val of_binary : string -> (t, [> Bin'.deserialization_error ]) Stdlib.result
val to_text : t -> (string, [> Text'.serialization_error ]) Stdlib.result
val of_text : string -> (t, [> Text'.deserialization_error ]) Stdlib.result