dream.websocketaf
Websocket.Opcode
dream
dream.cipher
dream.gluten
dream.gluten-lwt
dream.gluten-lwt-unix
dream.graphiql
dream.graphql
dream.h2
dream.h2-lwt
dream.h2-lwt-unix
dream.hpack
dream.http
dream.httpaf
dream.httpaf-lwt
dream.httpaf-lwt-unix
dream.localhost
dream.middleware
dream.pure
dream.sql
type standard_non_control = [
| `Continuation
| `Text
| `Binary
]
type standard_control = [
| `Connection_close
| `Ping
| `Pong
type standard = [
| standard_non_control
| standard_control
type t = [
| standard
| `Other of int
val code : t -> int
val of_code : int -> t option
val of_code_exn : int -> t
val to_int : t -> int
val of_int : int -> t option
val of_int_exn : int -> t
val pp_hum : Format.formatter -> t -> unit