package ocaml-protoc-plugin

  1. Overview
  2. Docs
type t = {
  1. path : int list;
    (*

    Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.

    *)
  2. source_file : string option;
    (*

    Identifies the filesystem path to the original source .proto.

    *)
  3. begin' : int option;
    (*

    Identifies the starting offset in bytes in the generated code that relates to the identified object.

    *)
  4. end' : int option;
    (*

    Identifies the ending offset in bytes in the generated code that relates to the identified offset. The end offset should be one past the last relevant byte (so the length of the text = end - begin).

    *)
}
val make : ?path:int list -> ?source_file:string -> ?begin':int -> ?end':int -> unit -> t

Helper function to generate a message using default values

Serialize the message to binary format

Deserialize from binary format

Serialize to Json (compatible with Yojson.Basic.t)

Deserialize from Json (compatible with Yojson.Basic.t)

val name : unit -> string

Fully qualified protobuf name of this message