package resp-mirage

  1. Overview
  2. Docs
type buffer = {
  1. flow : Conduit_mirage.Flow.flow;
  2. mutable buffer : Cstruct.t;
}
module Reader : Resp.READER with type ic = buffer
module Backend (Data : sig ... end) : Resp_server.SERVER with type oc = Conduit_mirage.Flow.flow and type ic = buffer and type data = Data.data
module Server : sig ... end