Module opendal::services::http

source ·
Expand description

HTTP Read-only backend support.

Although HTTP backend supports write, delete and create, but they should only be used for testing purpose. As there are no standards for HTTP services to handle them.

HTTP Method mapping:

  • create: HTTP PUT (test only)
  • read: HTTP GET
  • write: HTTP PUT (test only)
  • stat: HTTP HEAD
  • delete: HTTP DELETE (test only)
  • list: List internal index.

Structs

Builder for http backend.