package ocaml-protoc-plugin

  1. Overview
  2. Docs

This module provides result type and functions for compatibility * with OCaml 4.06

type error = [
  1. | `Premature_end_of_input
  2. | `Unknown_field_type of int
  3. | `Wrong_field_type of string * Protobuf__.Field.t
  4. | `Illegal_value of string * Protobuf__.Field.t
  5. | `Not_implemented
  6. | `Unknown_enum_value of int
  7. | `Oneof_missing
  8. | `Required_field_missing
]
val show_error : [< `Illegal_value of string * Protobuf__.Field.t | `Not_implemented | `Oneof_missing | `Premature_end_of_input | `Required_field_missing | `Unknown_enum_value of int | `Unknown_field_type of int | `Wrong_field_type of string * Protobuf__.Field.t ] -> string
type 'a t = ('a, error) result
val (>>|) : ('a, 'b) result -> ('c -> 'd) -> ('e, 'f) result
val (>>=) : ('a, 'b) result -> ('c -> ('d, 'e) result) -> ('d, 'e) result
val return : 'a -> ('b, 'c) result
val fail : 'a -> ('b, 'c) result
OCaml

Innovation. Community. Security.