type t = [
|
`Error
`Pending
`Success
`Failure
]
The type for status states.
val pp : t Fmt.t
pp is the pretty-printer for status states.
pp
val to_string : t -> string
to_string v is the string represenation of v.
to_string v
v
val of_string : string -> t option
of_string s is the value v such that of_string s is Some v.
of_string s
Some v