package bistro

  1. Overview
  2. Docs
type t = [
  1. | `Succeeded
  2. | `Missing_output
  3. | `Error_exit_code of int
  4. | `Plugin_failure of string
  5. | `Scheduler_error of string
]
val is_success : t -> bool