Module Dream_httpaf_.MethodSource
Sourcetype standard = [ | `GET| `HEAD| `POST| `PUT| `DELETE| `CONNECT| `OPTIONS| `TRACE
] Sourceval is_safe : [> `GET | `HEAD | `OPTIONS | `TRACE ] -> bool Sourceval is_cacheable : [> `GET | `HEAD | `POST ] -> bool Sourceval is_idempotent :
[> `DELETE | `GET | `HEAD | `OPTIONS | `PUT | `TRACE ] ->
bool Sourceval to_string :
[< `CONNECT
| `DELETE
| `GET
| `HEAD
| `OPTIONS
| `Other of string
| `POST
| `PUT
| `TRACE ] ->
string Sourceval of_string :
string ->
[> `CONNECT
| `DELETE
| `GET
| `HEAD
| `OPTIONS
| `Other of string
| `POST
| `PUT
| `TRACE ] Sourceval pp_hum :
Format.formatter ->
[< `CONNECT
| `DELETE
| `GET
| `HEAD
| `OPTIONS
| `Other of string
| `POST
| `PUT
| `TRACE ] ->
unit