Module Mina_base.With_status

module Stable : sig ... end
type 'a t = 'a Stable.Latest.t = {
data : 'a;
status : Transaction_status.t;
}
val to_yojson : 'a. ( 'a -> Yojson.Safe.t ) -> 'a t -> Yojson.Safe.t
val of_yojson : 'a. ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> 'a t Ppx_deriving_yojson_runtime.error_or
val _ : ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> 'a t Ppx_deriving_yojson_runtime.error_or
val t_of_sexp : 'a. ( Ppx_sexp_conv_lib.Sexp.t -> 'a ) -> Ppx_sexp_conv_lib.Sexp.t -> 'a t
val sexp_of_t : 'a. ( 'a -> Ppx_sexp_conv_lib.Sexp.t ) -> 'a t -> Ppx_sexp_conv_lib.Sexp.t
val equal : 'a. ( 'a -> 'a -> bool ) -> 'a t -> 'a t -> bool
val compare : 'a. ( 'a -> 'a -> int ) -> 'a t -> 'a t -> int
val status : 'a t -> Transaction_status.t
val data : 'a t -> 'b
module Fields : sig ... end
val map : f:( 'a -> 'b ) -> 'c t -> 'd t
val map_opt : f:( 'a -> 'b option ) -> 'c t -> 'd t option
val map_result : f:( 'a -> ( 'b, 'c ) Core_kernel.Result.t ) -> 'd t -> ( 'e t, 'c ) Core_kernel.Result.t