package protocell

  1. Overview
  2. Docs
module C_type : sig ... end
module J_s_type : sig ... end
type t = {
  1. ctype : C_type.t;
  2. packed : bool option;
  3. jstype : J_s_type.t;
  4. lazy' : bool option;
  5. deprecated : bool option;
  6. weak : bool option;
  7. uninterpreted_option : Uninterpreted_option.t list;
}
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