package shuttle_http

  1. Overview
  2. Docs

Module Shuttle_http.ResponseSource

Sourcetype t

t Represents a HTTP 1.1 response.

Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval create : ?version:Version.t -> ?reason_phrase:string -> ?headers:Headers.t -> ?body:Body.t -> Status.t -> t
Sourceval version : t -> Version.t

version returns the HTTP version number for the response.

Sourceval status : t -> Status.t

status returns the Status code for this response.

Sourceval reason_phrase : t -> string

reason_phrase returns the status reason phrase for the response.

Sourceval headers : t -> Headers.t

headers returns the HTTP headers for this response.

Sourceval body : t -> Body.t

body returns the body payload of this response.

Sourceval with_headers : t -> Headers.t -> t
Sourceval with_body : t -> Body.t -> t
OCaml

Innovation. Community. Security.