package piaf

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Piaf.RequestSource

Sourcetype t = private {
  1. meth : Method.t;
  2. target : string;
  3. version : Versions.HTTP.t;
  4. headers : Headers.t;
  5. scheme : Scheme.t;
  6. body : Body.t;
}
Sourceval create : scheme:Scheme.t -> version:Versions.HTTP.t -> ?headers:Headers.t -> meth:Method.t -> body:Body.t -> string -> t
Sourceval uri : t -> Uri.t
Sourceval persistent_connection : t -> bool
Sourceval pp_hum : Format.formatter -> t -> unit