Module Envelope.Incoming

type 'a t = {
data : 'a;
sender : Sender.t;
received_at : Core.Time.t;
}
val to_yojson : ( 'a -> Yojson.Safe.t ) -> 'a t -> Yojson.Safe.t
val of_yojson : ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> 'a t Ppx_deriving_yojson_runtime.error_or
val equal : ( 'a -> 'a -> bool ) -> 'a t -> 'a t -> bool
include Ppx_sexp_conv_lib.Sexpable.S1 with type 'a t := 'a t
val t_of_sexp : ( Sexplib0__.Sexp.t -> 'a ) -> Sexplib0__.Sexp.t -> 'a t
val sexp_of_t : ( 'a -> Sexplib0__.Sexp.t ) -> 'a t -> Sexplib0__.Sexp.t
val compare : ( 'a -> 'a -> int ) -> 'a t -> 'a t -> int
val sender : 'a t -> Sender.t
val data : 'a t -> 'a
val received_at : 'a t -> Core.Time.t
val wrap : data:'a -> sender:Sender.t -> 'a t
val wrap_peer : data:'a -> sender:Peer.t -> 'a t
val map : f:( 'a -> 'b ) -> 'a t -> 'b t
val local : 'a -> 'a t
val remote_sender_exn : 'a t -> Peer.t
val gen : 'a Core.Quickcheck.Generator.t -> 'a t Core.Quickcheck.Generator.t