Results for “Std.Http.request”
16 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Http.Request
A request, with nothing about how it will be sent.
- Std.Http.request
Std.Http.Method -> Str -> Std.Http.RequestA request with a method and a target and nothing else.
- Std.Http.Client.send
&Std.Http.Request -> &Std.Http.Client.Limits -> Result[Std.Http.Response, Std.Http.Client.ClientError]Send a request and read what comes back.
- Std.Http.Message.parseHead
Str -> Result[Std.Http.Request, Std.Http.Message.MessageError]A request read from text where the head has already been separated from the body.
- Std.Http.Message.parseRequest
Str -> Result[Std.Http.Request, Std.Http.Message.MessageError]A request read from the text a connection carried.
- Std.Http.Message.renderRequest
&Std.Http.Request -> StrA request written as the protocol writes it, head and body together.
- Std.Http.Message.renderRequestBytes
&Std.Http.Request -> BytesA request written as the protocol writes it, as the exact bytes sent, so a
- Std.Http.Retry.repeatable
&Std.Http.Request -> BoolWhether a request may be sent twice without meaning something different.
- Std.Http.Retry.send
&Std.Http.Request -> &Std.Http.Client.Limits -> &Std.Http.Retry.Backoff -> Int -> Result[Std.Http.Response, Std.Http.Client.ClientError]Send a request, trying again when trying again could help.
- Std.Http.renderHead
&Std.Http.Request -> StrA request written as the protocol writes it, without a body.
- Std.Http.requestBytes
&Std.Http.Request -> BytesA request's body as bytes, with a byte body taking precedence over the text
- Std.Http.withBody
&Std.Http.Request -> Str -> Std.Http.RequestA request with a text body, and the length header that goes with it.
- Std.Http.withBytes
&Std.Http.Request -> &Bytes -> Std.Http.RequestA request carrying exact bytes as its body, and the length header that goes
- Std.Http.withForm
&Std.Http.Request -> &Array[(Str, Str)] -> Std.Http.RequestA request with a form body and the headers that describe it.
- Std.Http.withHeader
&Std.Http.Request -> Str -> Str -> Std.Http.RequestA request with one header added, keeping any it already had.
- Std.Http.withJson
&Std.Http.Request -> Str -> Std.Http.RequestA request with a JSON body and the headers that describe it.
