TX.Response
type status =
| DROPPED
| ERROR
| OKAY
| NULL
type t = {
id : int;
status : status;
}
val write : t -> Cstruct.t -> unit
val read : Cstruct.t -> t