Http_types.Response
type t = {
status : int;
headers : (string * string) list;
body : Body.t;
}
Common response type returned by backends.
val sexp_of_t : t -> Sexplib0.Sexp.t
val status : t -> int