[][src]Module tus_client::http

Contains the HttpHandler trait and related structs. This module is only relevant when implement HttpHandler manually.

Structs

HttpRequest

Represents an HTTP request to be executed by the handler.

HttpResponse

Represents an HTTP response from the server.

Enums

HttpMethod

Enumerates the HTTP methods used by tus_client::Client.

Traits

HttpHandler

The required trait used by tus_client::Client to represent a handler to execute HttpRequests.

Functions

default_headers

Returns the default headers required to make requests to an tus enabled endpoint.

Type Definitions

Headers

An alias for HashMap<String, String>, which represents a set of HTTP headers and their values.