Module Bistro_engine.Execution_trace
type t = | Run of {ready : time;start : time;_end_ : time;outcome : Task_result.t;
}| Done_already of {id : string;
}| Canceled of {id : string;missing_deps : t list;
}| Allocation_error of {id : string;msg : string;
}
val is_errored : t -> boolval all_ok : t list -> boolval gather_failures : t list -> t list