Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
request.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14(* type t = { headers : Http.Header.t; meth : Http.Method.t; uri : Uri.t; version : Http.Version.t; encoding : Http.Transfer.encoding; } let pp fmt ({ headers; meth; uri; version; _ } : t) = let req = Http.Request.make ~meth ~headers ~version (Uri.to_string uri) in Http.Request.pp fmt req *)