include H2.Method
type standard = [ | `CONNECT |
| `DELETE |
| `GET |
| `HEAD |
| `OPTIONS |
| `POST |
| `PUT |
| `TRACE |
]type t = [ | `CONNECT |
| `DELETE |
| `GET |
| `HEAD |
| `OPTIONS |
| `Other of string |
| `POST |
| `PUT |
| `TRACE |
]
val is_safe : standard -> boolval is_cacheable : standard -> boolval is_idempotent : standard -> boolval to_string : t -> stringval of_string : string -> tval pp_hum : Stdlib.Format.formatter -> t -> unit