Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
requestHttpVersion :: RequestF body path -> HttpVersionservant-client-core Servant.Client.Core No documentation available.
requestMethod :: RequestF body path -> Methodservant-client-core Servant.Client.Core No documentation available.
requestPath :: RequestF body path -> pathservant-client-core Servant.Client.Core No documentation available.
requestQueryString :: RequestF body path -> Seq QueryItemservant-client-core Servant.Client.Core No documentation available.
runRequestAcceptStatus :: RunClient m => Maybe [Status] -> Request -> m Responseservant-client-core Servant.Client.Core How to make a request, with an optional list of status codes to not throw exceptions for (default: [200..299]).
setRequestBody :: RequestBody -> MediaType -> Request -> Requestservant-client-core Servant.Client.Core Set body and media type of the request being constructed.
setRequestBodyLBS :: ByteString -> MediaType -> Request -> Requestservant-client-core Servant.Client.Core Set body and media type of the request being constructed. The body is set to the given bytestring using the RequestBodyLBS constructor.
unAuthReq :: AuthenticatedRequest a -> (AuthClientData a, AuthClientData a -> Request -> Request)servant-client-core Servant.Client.Core No documentation available.
withStreamingRequest :: RunStreamingClient m => Request -> (StreamingResponse -> IO a) -> m aservant-client-core Servant.Client.Core No documentation available.
newtype
AuthenticatedRequest aservant-client-core Servant.Client.Core.Auth For better type inference and to avoid usage of a data family, we newtype wrap the combination of some AuthClientData and a function to add authentication data to a request NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE