You can search for identifiers within the package.
in-package search v0.2.0
type error = [
| `Invalid_store
| `Msg of string
| `Dictionary_expected of Mirage_kv.Key.t
| `Not_found of Mirage_kv.Key.t
| `Value_expected of Mirage_kv.Key.t
]
include Mirage_kv.RO with type error := error
val pp_error : error Fmt.t
type t
val disconnect : t -> unit Lwt.t
type key = Mirage_kv.Key.t
val exists : t -> key -> ([ `Dictionary | `Value ] option, error) Stdlib.result Lwt.t
val get : t -> key -> (string, error) Stdlib.result Lwt.t
val list : t -> key -> ((string * [ `Dictionary | `Value ]) list, error) Stdlib.result Lwt.t
val last_modified : t -> key -> (int * int64, error) Stdlib.result Lwt.t
val digest : t -> key -> (string, error) Stdlib.result Lwt.t
val connect : ?analyze:bool -> string -> (t, [> error ]) Stdlib.result Lwt.t