Websocket.Frame
module Opcode : sig ... end
type t = {
opcode : Opcode.t;
extension : int;
final : bool;
content : string;
}
val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> string
val create : ?opcode:Opcode.t -> ?extension:int -> ?final:bool -> ?content:string -> unit -> t
val close : int -> t