package sihl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. current : Message.t option;
  2. next : Message.t option;
}
val equal : t -> t -> Ppx_deriving_runtime.bool
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val to_yojson : t -> Yojson.Safe.t
val create : Message.t -> t
val empty : t
val current : t -> Message.t option
val next : t -> Message.t option
val set_next : Message.t -> t -> t
val set_current : Message.t -> t -> t
val rotate : t -> t
val to_string : t -> string
val of_string : string -> t Ppx_deriving_yojson_runtime.error_or