Module Piaf.Method

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 -> bool
val is_cacheable : standard -> bool
val is_idempotent : standard -> bool
val to_string : t -> string
val of_string : string -> t
val pp_hum : Stdlib.Format.formatter -> t -> unit