You can search for identifiers within the package.
in-package search v0.2.0
scgi
Scgi.Response
type body = [
| `Stream of int option * char Lwt_stream.t
| `String of string
]
SCGI response
type t = {
status : Http_status.t;
headers : Http_header.t list;
body : body;
}
val make : status:Http_status.t -> ?headers:Http_header.t list -> ?body:body -> unit -> t
val status_int : t -> int
val status_string : t -> string
val add_header : Http_header.t -> t -> t
val to_debug_string : ?body_max:int -> t -> string