package ocaml-protoc-plugin

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

Module Protobuf.MethodDescriptorProto

Sourceval name' : unit -> string
Sourcetype t = {
  1. name : string option;
  2. input_type : string option;
  3. output_type : string option;
  4. options : MethodOptions.t option;
  5. client_streaming : bool;
  6. server_streaming : bool;
}
Sourceval make : ?name:string -> ?input_type:string -> ?output_type:string -> ?options:MethodOptions.t -> ?client_streaming:bool -> ?server_streaming:bool -> unit -> t