Module Ppx_deriving_runtime.Result

type ('a, 'b) t = ('a, 'b) result =
  1. | Ok of 'a
  2. | Error of 'b
type ('a, 'b) result = ('a, 'b) t =
  1. | Ok of 'a
  2. | Error of 'b