Up

module Body

: sig

HTTP request and response body handling

#
type t = [
| `Empty
| `String of string
| `Strings of string list
]

Every HTTP body can at least be an empty value or a string

include S.Body with type t := t
#
val length : t -> int64
#
val t_of_sexp : Sexplib.Sexp.t -> t
#
val __t_of_sexp__ : Sexplib.Sexp.t -> t
#
val sexp_of_t : t -> Sexplib.Sexp.t
end