Module Hacspeclib_macro_parser.PublicNatMod

module M : sig ... end
include module type of struct include M end
type t = M.t = {
  1. type_name : Base.string;
  2. type_of_canvas : Base.string;
  3. bit_size_of_field : Base.int;
  4. modulo_value : Base.string;
}
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val show : t -> Ppx_deriving_runtime.string
val equal : t -> t -> Ppx_deriving_runtime.bool
val t_of_yojson : Ppx_yojson_conv_lib.Yojson.Safe.t -> t
val yojson_of_t : t -> Ppx_yojson_conv_lib.Yojson.Safe.t
type t' = M.t' = {
  1. type_name : Base.string Base.option;
  2. type_of_canvas : Base.string Base.option;
  3. bit_size_of_field : Base.int Base.option;
  4. modulo_value : Base.string Base.option;
}
val parser' : t' Angstrom.t
val parser : t Angstrom.t
val name : string
include sig ... end
val parse : Base.string -> (M.t, Base.string) Base.Result.t