ExExample.Cache.Result (ExExample v0.1.2)

View Source

I represent the result of an example execution.

I contain the key for the example I am the result of, the status of the execution, and the result of the execution.

Summary

Types

t()

I represent the result of a completed Example Computation

Types

t()

@type t() :: %ExExample.Cache.Result{
  cached: boolean(),
  key: ExExample.Cache.Key.t() | nil,
  result: term() | nil,
  success: (:failed | :success | :skipped) | nil
}

I represent the result of a completed Example Computation