Expand description
§batch_result
A small utility for batch execution and heuristic evaluation of independent tasks.
This crate is designed for situations where:
- Tasks are independent
- Partial success is meaningful
- You want diagnostics and evaluation, not fail-fast control flow
batch_result does not model workflows, dependencies, or execution order.
Structs§
- Outcome
- Aggregates multiple independent tasks and evaluates their outcomes.
Enums§
- Outcome
Class - Classification of a completed batch outcome.
- Task
Status - Represents the execution status of a single task.
Type Aliases§
- Boxed
DynError - Boxed dynamic error type used throughout the crate.