Eio_mock.ActionActions that can be performed by mock handlers.
type 'a t = [ | `Return of 'aImmediately return a value
*)| `Raise of exnRaise an exception
*)| `Await of 'a Eio.Promise.or_exnWait for a promise to resolve
*)| `Yield_then of 'a t| `Run of unit -> 'aRun any code you like.
*) ]val run : 'a t -> 'arun t performs action t and returns the result.