Module Bistro_engine.Task_result
type t = | Input of {id : string;path : string;pass : bool;
}| Select of {id : string;dir_path : string;sel : string list;pass : bool;
}| Shell of {id : string;descr : string;outcome : [ `Succeeded | `Missing_output | `Failed ];exit_code : int;cmd : string;file_dumps : Shell_command.file_dump list;cache : string option;stdout : string;stderr : string;
}| Plugin of {id : string;descr : string;outcome : [ `Succeeded | `Missing_output | `Failed ];msg : string option;
}| Container_image_fetch of {id : string;outcome : (unit, [ `Singularity_failed_pull of int * string ]) result;
}
val succeeded : t -> boolval error_short_descr : t -> string