package async_smtp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type state = [
  1. | `Busy
  2. | `Idle
  3. | `Closing
]
val sexp_of_state : state -> Sexplib0.Sexp.t
val compare_state : state -> state -> int
type t = {
  1. state : state;
  2. since : Core.Time_ns.Span.t;
}
val since : t -> Core.Time_ns.Span.t
val state : t -> state
module Fields : sig ... end
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t -> t -> int