Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Curly
Sourceval run :
?exe:string ->
?args:string list ->
?follow_redirects:bool ->
Request.t ->
(Response.t, Error.t) Result.result
val get :
?exe:string ->
?args:string list ->
?headers:Header.t ->
?follow_redirects:bool ->
string ->
(Response.t, Error.t) Result.result
Specialized version of run
for method `GET
val head :
?exe:string ->
?args:string list ->
?headers:Header.t ->
?follow_redirects:bool ->
string ->
(Response.t, Error.t) Result.result
Specialized version of run
for method `HEAD
val delete :
?exe:string ->
?args:string list ->
?headers:Header.t ->
?follow_redirects:bool ->
string ->
(Response.t, Error.t) Result.result
Specialized version of run
for method `DELETE
val post :
?exe:string ->
?args:string list ->
?headers:Header.t ->
?body:string ->
?follow_redirects:bool ->
string ->
(Response.t, Error.t) Result.result
Specialized version of run
for method `POST
val put :
?exe:string ->
?args:string list ->
?headers:Header.t ->
?body:string ->
?follow_redirects:bool ->
string ->
(Response.t, Error.t) Result.result
Specialized version of run
for method `PUT