package ocaml-protoc-plugin

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Protobuf.FileDescriptorProto

Sourceval name' : unit -> string
Sourcetype t = {
  1. name : string option;
  2. package : string option;
  3. dependency : string list;
  4. public_dependency : int list;
  5. weak_dependency : int list;
  6. message_type : DescriptorProto.t list;
  7. enum_type : EnumDescriptorProto.t list;
  8. service : ServiceDescriptorProto.t list;
  9. extension : FieldDescriptorProto.t list;
  10. options : FileOptions.t option;
  11. source_code_info : SourceCodeInfo.t option;
  12. syntax : string option;
}
Sourceval make : ?name:string -> ?package:string -> ?dependency:string list -> ?public_dependency:int list -> ?weak_dependency:int list -> ?message_type:DescriptorProto.t list -> ?enum_type:EnumDescriptorProto.t list -> ?service:ServiceDescriptorProto.t list -> ?extension:FieldDescriptorProto.t list -> ?options:FileOptions.t -> ?source_code_info:SourceCodeInfo.t -> ?syntax:string -> unit -> t