package valkey

  1. Overview
  2. Docs

Module Valkey.ErrorSource

Typed form of a Valkey server error reply.

Sourcetype t = {
  1. code : string;
  2. message : string;
}
Sourceval of_string : string -> t
Sourceval to_string : t -> string
Sourceval equal : t -> t -> bool
Sourceval pp : Format.formatter -> t -> unit