Module Http.Version

type t = [
  1. | `HTTP_1_0
  2. | `HTTP_1_1
  3. | `Other of string
]
val compare : t -> t -> int
val of_string : string -> t
val to_string : t -> string
val pp : Stdlib.Format.formatter -> t -> unit