package dune-rpc

  1. Overview
  2. Docs
type t = [
  1. | `Unix of string
  2. | `Ip of [ `Host of string ] * [ `Port of int ]
]
val rpc_socket_relative_to_build_dir : string
val to_string : t -> string
val compare : t -> t -> Ordering.t
val to_dyn : t -> Dyn.t
val sexp : t Conv.value
val add_to_env : t -> Stdune.Env.t -> Stdune.Env.t
module type S = sig ... end
type error =
  1. | Invalid_where of string
exception E of error
module Make (Fiber : sig ... end) (_ : sig ... end) : S with type 'a fiber := 'a Fiber.t