ocaml-trace/src/types.ml
Simon Cruanes c7a25a1618
more docs
2023-06-12 11:06:45 -04:00

13 lines
304 B
OCaml

type span = int64
(** A span identifier.
The meaning of the identifier depends on the collector. *)
type user_data =
[ `Int of int
| `String of string
| `Bool of bool
| `None
]
(** User defined data, generally passed as key/value pairs to
whatever collector is installed (if any). *)