module Status : sig ... endtype t = {mutable alarm : Async_kernel__Types.Job_or_event.t Alarm.t; |
mutable at : Time_ns.t; |
callback : unit -> unit; |
execution_context : Async_kernel.Execution_context.t; |
mutable interval : Time_ns.Span.t option; |
mutable next_fired : t; |
mutable status : Status.t; |
}val interval : t -> Time_ns.Span.t optionval set_interval : t -> Time_ns.Span.t option -> unitval execution_context : t -> Async_kernel.Execution_context.tval callback : t -> unit -> unitmodule Fields : sig ... endval none : tval is_none : t -> boolval is_some : t -> boolval sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.tval invariant : t -> unit